From e0d7716b2b1152c4dadb864228007f50dd0cca77 Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Mon, 2 Oct 2023 18:43:41 +0300 Subject: [PATCH] docs: update link to `classification_example_test.py` --- official/projects/text_classification_example/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/official/projects/text_classification_example/README.md b/official/projects/text_classification_example/README.md index d0ec3b10f28..ed19d85fdfa 100644 --- a/official/projects/text_classification_example/README.md +++ b/official/projects/text_classification_example/README.md @@ -44,7 +44,7 @@ class ClassificationDataLoader(data_loader.DataLoader): ... ``` -Overall, loader will translate the tf.Example to approiate format for model to +Overall, loader will translate the tf.Example to appropriate format for model to consume. Then in Task.build_inputs, link the dataset like ```python @@ -88,7 +88,7 @@ task_config = classification_example.ClassificationExampleConfig() task = classification_example.ClassificationExampleTask(task_config) ``` -TIPs: You can also check the [unittest](https://github.com/tensorflow/models/blob/master/official/nlp/projects/example/classification_example_test.py) +TIPs: You can also check the [unittest](https://github.com/tensorflow/models/blob/master/official/projects/text_classification_example/classification_example_test.py) for better understanding. ### Finetune