Browse Source

[FIX] fix typo

pull/1/head
troyyyyy 2 years ago
parent
commit
b8e09e8eed
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      docs/Intro/Quick-Start.rst

+ 1
- 1
README.md View File

@@ -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)
```


+ 1
- 1
docs/Intro/Quick-Start.rst View File

@@ -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)



Loading…
Cancel
Save