rvalerio commited on
Commit
115895c
1 Parent(s): 13b6b9f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -75,13 +75,13 @@ from huggingface_hub import snapshot_download
75
  dataset_name = "inductiva/windtunnel"
76
 
77
  # Download the entire dataset
78
- snapshot_download(repo_id=dataset_name)
79
 
80
  # Download to a specific local directory
81
- snapshot_download(repo_id=dataset_name, local_dir="local_folder")
82
 
83
  # Download only the input mesh files across all simulations
84
- snapshot_download(allow_patterns=["*/*/*/input_mesh.obj"], repo_id=dataset_name)
85
  ```
86
 
87
  ### 2. Using load_dataset()
 
75
  dataset_name = "inductiva/windtunnel"
76
 
77
  # Download the entire dataset
78
+ snapshot_download(repo_id=dataset_name, repo_type="dataset")
79
 
80
  # Download to a specific local directory
81
+ snapshot_download(repo_id=dataset_name, repo_type="dataset", local_dir="local_folder")
82
 
83
  # Download only the input mesh files across all simulations
84
+ snapshot_download(repo_id=dataset_name, repo_type="dataset", allow_patterns=["*/*/*/input_mesh.obj"])
85
  ```
86
 
87
  ### 2. Using load_dataset()