Datasets:
Languages:
English
Size:
10K - 100K
Update README.md
Browse files
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"]
|
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()
|