{{ message }}
where is the data saved on my computer #1854
Replies: 1 comment
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_PATHwhere downloaded datasets will reside.