Open
Description
In the classification
and video_classification
references, we cache here:
vision/references/classification/train.py
Line 108 in 6e203b4
However, this directory is not used by PyTorch core. Instead, ~/.cache/torch
is used. For example, torch.hub
caches in ~/.cache/torch/hub
. The datasets v2 used the same root folder and will store the datasets by default in
which expands to ~/.cache/torch/datasets/vision
.
Maybe we can use ~/.cache/torch/cached_datasets
or something similar as cache path in the references?