I have downloaded imagenet-1k from the hub. I am trying to load it with
ds = load_dataset(‘/data/imagenet-1k/’), but it seems it does not use the local copy in the directory I give it and starts downloading it allover again. How do I make it use the my local imagenet-1k?
2 Likes
The function to be used is load_from_disk
instead of load_dataset
.