From b8e09e8eed0214b1efe73c5611a5e51d561ab4fd Mon Sep 17 00:00:00 2001 From: troyyyyy Date: Thu, 28 Dec 2023 09:21:26 +0800 Subject: [PATCH] [FIX] fix typo --- README.md | 2 +- docs/Intro/Quick-Start.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 37d013c..af49c3a 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ In the MNIST Addition task, the data loading looks like: # The 'datasets' module below is located in 'examples/mnist_add/' from datasets import get_dataset -# train_data and test_data are tuples in the format (X, gt_pseudo_label, Y) +# train_data and test_data are tuples in the format of (X, gt_pseudo_label, Y) train_data = get_dataset(train=True) test_data = get_dataset(train=False) ``` diff --git a/docs/Intro/Quick-Start.rst b/docs/Intro/Quick-Start.rst index 5c2f1a4..68feddf 100644 --- a/docs/Intro/Quick-Start.rst +++ b/docs/Intro/Quick-Start.rst @@ -24,7 +24,7 @@ In the MNIST Addition task, the data loading looks like # The 'datasets' module below is located in 'examples/mnist_add/' from datasets import get_dataset - # train_data and test_data are tuples in the format (X, gt_pseudo_label, Y) + # train_data and test_data are tuples in the format of (X, gt_pseudo_label, Y) train_data = get_dataset(train=True) test_data = get_dataset(train=False)