bear7011/gemma-3-4b-kinetics_3K
收藏Hugging Face2026-03-23 更新2026-03-29 收录
下载链接:
https://hf-mirror.com/datasets/bear7011/gemma-3-4b-kinetics_3K
下载链接
链接失效反馈官方服务:
资源简介:
You can use this program to download the dataset
```python
import os
from huggingface_hub import snapshot_download
REPO = "bear7011/gemma-3-4b-kinetics_3K"
LOCAL_DIR = os.path.join(os.path.dirname(__file__), "dataset") # __file__ is the path to the current file
def main():
print(f"Downloading dataset {REPO} to {LOCAL_DIR} ...")
snapshot_download(
repo_id=REPO,
repo_type="dataset",
local_dir=LOCAL_DIR,
resume_download=True
)
print(f"Download complete! Dataset saved to: {LOCAL_DIR}")
if __name__ == "__main__":
main()
```
提供机构:
bear7011



