Using dataset_scenario generators #475
-
I am finding it difficult to use my dataset in scenario generation. Please can you advise me In the figure, you see 4 datasets train_MNIST, train_cifar10, test _dataset, and train_dataset. I am trying to bring train and test datasets into train_MNIST and train_cifar10 form. So that it can be added into the below code for scenario generation.
Please can you assist me with some examples |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi there, the datasets you pass to First, are |
Beta Was this translation helpful? Give feedback.
Hi there, the datasets you pass to
dataset_scenario
must be datasets containing a validtargets
field (containing the class label for each pattern) or instances ofSubset
andConcatDataset
pointing to a dataset with that field.First, are
train_dataset
andtest_dataset
subsets of MNIST and Cifar datasets? Or are they subsets of some other dataset?