mboudiaf / pytorch-meta-dataset

A non-official 100% PyTorch implementation of META-DATASET benchmark for few-shot classification
59 stars 9 forks source link

Feature Request: Ideally the episodes generated would be repeatable for a specified seed. #9

Closed jfb54 closed 3 years ago

jfb54 commented 3 years ago

The official meta-dataset reader is not deterministic and repeatable, which is frustrating as test runs cannot be directly compared. If your reader could be deterministic (given a seed), that would be a huge win.

mboudiaf commented 3 years ago

Hey,

I added this features. You can now specify your seed in args.seed and the sampling of episodes will be deterministic. What I changed was:

Best

jfb54 commented 3 years ago

Great! I will give it a try.