How to create a non-computational visual domain data #370
-
Hi Yoshitomo, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @LeighSu If you're using torchdistill=v0.3.3 (which I'd suggest at this time), you can register your own dataset like this from torchdistill.datasets.registry import register_dataset
@register_dataset
class YourOwnDataset(...):
... and specify the dataset name and kwargs in your yaml file |
Beta Was this translation helpful? Give feedback.
Hi @LeighSu
If you're using torchdistill=v0.3.3 (which I'd suggest at this time), you can register your own dataset like this
and specify the dataset name and kwargs in your yaml file