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) |
Beta Was this translation helpful? Give feedback.
-
have you tried creating symbolic links using |
Beta Was this translation helpful? Give feedback.
-
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" |
Beta Was this translation helpful? Give feedback.
-
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.
Beta Was this translation helpful? Give feedback.
All reactions