where is the data saved on my computer #1854
-
As the title says, I want to know where the data is saved on my computer, when I execute "hub.load()" . Can I change its path? |
Beta Was this translation helpful? Give feedback.
Answered by
davidbuniat
Sep 9, 2022
Replies: 1 comment
-
Hi @likangGit, by default when you execute hub.load("hub://....") no data is copied to your machine (aside from the metadata), the data is only transferred when you access an element. however you can change the access method to cache it locally by changing to |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mikayelh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @likangGit, by default when you execute hub.load("hub://....") no data is copied to your machine (aside from the metadata), the data is only transferred when you access an element.
however you can change the access method to cache it locally by changing to
hub.load(access_method='download')
and specifying environmentHUB_DOWNLOAD_PATH
where downloaded datasets will reside.