MohammadGholizadeh/filimo-farsi
Make Sure to use this command before downloading the dataset. !pip install "fsspec<=2023.5.0" from datasets import load_dataset import os # Define a path on your large disk for the cache cache_path = "/content/huggingface_cache" os.makedirs(cache_path, exist_ok=True) # Use the cache_dir argument to point to your new path ds = load_dataset( "MohammadGholizadeh/filimo-farsi", cache_dir=cache_path ) print(f"✅ Dataset downloaded and cached in: {cache_path}")
10681
Make Sure to use this command before downloading the dataset.
!pip install "fsspec<=2023.5.0"
from datasets import load_dataset
import os
# Define a path on your large disk for the cache
cache_path = "/content/huggingface_cache"
os.makedirs(cache_path, exist_ok=True)
# Use the cache_dir argument to point to your new path
ds = load_dataset(
"MohammadGholizadeh/filimo-farsi",
cache_dir=cache_path
)
print(f"✅ Dataset downloaded and cached in: {cache_path}")
