Replies: 3 comments 1 reply
|
Hi! You can easily share the dataset by pushing it to the Hub ( # push to the Hub
ds.push_to_hub(f"{org_name}/{ds_name}", private=True)
# load from the Hub
ds = load_dataset(f"{org_name}/{ds_name}", use_auth_token=True) |
1 reply
|
have you tried creating symbolic links using |
0 replies
|
You can maybe try changing the ENV variables for the cache to some shared space on a disk or private network. Personnaly I have this piece of code in # Users can share hugging face datasets
HF="/disk/huggingface"
export HF_DATASETS_CACHE="$HF/datasets"
export HF_HUB_CACHE="$HF" |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Is it possible to share the datasets cache (and transformer models cache) to different users in ubuntu. I try to use the same cache location, but got the permission errors for the lock file.
Many thanks.
All reactions