From 21437142dd16b5bd8308e0511411718444160712 Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 21 Apr 2021 17:04:55 +0100 Subject: [PATCH] Merge new TF example script (#11360) First of the new and more idiomatic TF examples! --- examples/tensorflow/README.md | 1 - .../tensorflow/text-classification/README.md | 88 ++- .../text-classification/requirements.txt | 3 +- .../run_text_classification.py | 534 ++++++++++++++++++ 4 files changed, 578 insertions(+), 48 deletions(-) create mode 100644 examples/tensorflow/text-classification/run_text_classification.py diff --git a/examples/tensorflow/README.md b/examples/tensorflow/README.md index 1bbda30e659c..d89292164c13 100644 --- a/examples/tensorflow/README.md +++ b/examples/tensorflow/README.md @@ -39,4 +39,3 @@ Coming soon! | **`text-generation`** | n/a | - | n/a | - | **`token-classification`** | CoNLL NER | - | - | - | **`translation`** | WMT | - | - | - - diff --git a/examples/tensorflow/text-classification/README.md b/examples/tensorflow/text-classification/README.md index 80d5454b855e..1809c5b1b732 100644 --- a/examples/tensorflow/text-classification/README.md +++ b/examples/tensorflow/text-classification/README.md @@ -1,5 +1,5 @@