Datasets:
Languages:
English
Size:
10K - 100K
Update README.md
Browse files
README.md
CHANGED
@@ -80,8 +80,13 @@ snapshot_download(repo_id=dataset_name, repo_type="dataset")
|
|
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
|
84 |
-
snapshot_download(
|
|
|
|
|
|
|
|
|
|
|
85 |
```
|
86 |
|
87 |
### 2. Using load_dataset()
|
|
|
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 simulation metadata across all simulations
|
84 |
+
snapshot_download(
|
85 |
+
repo_id=dataset_name,
|
86 |
+
repo_type="dataset",
|
87 |
+
local_dir="local_folder",
|
88 |
+
allow_patterns=["*/*/*/simulation_metadata.json"]
|
89 |
+
)
|
90 |
```
|
91 |
|
92 |
### 2. Using load_dataset()
|