From 6b148cc7bb36620bf102b9b6ee103e1b62db1475 Mon Sep 17 00:00:00 2001 From: Gustavo Bertoli Date: Wed, 17 Jan 2024 22:09:55 +0100 Subject: [PATCH] Minor typo: MNIST instead of CIFAR10 --- datasets/doc/source/tutorial-quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasets/doc/source/tutorial-quickstart.rst b/datasets/doc/source/tutorial-quickstart.rst index b93a08f234f2..bd4f336d618d 100644 --- a/datasets/doc/source/tutorial-quickstart.rst +++ b/datasets/doc/source/tutorial-quickstart.rst @@ -40,7 +40,7 @@ To iid partition your dataset, choose the split you want to partition and the nu partition = fds.load_partition(0, "train") centralized_dataset = fds.load_full("test") -Now you're ready to go. You have ten partitions created from the train split of the MNIST dataset and the test split +Now you're ready to go. You have ten partitions created from the train split of the CIFAR10 dataset and the test split for the centralized evaluation. We will convert the type of the dataset from Hugging Face's `Dataset` type to the one supported by your framework.