rvalerio commited on
Commit
1ea1710
1 Parent(s): 6175aba

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -2
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 input mesh files across all simulations
84
- snapshot_download(repo_id=dataset_name, repo_type="dataset", allow_patterns=["*/*/*/simulation_metadata.json"])
 
 
 
 
 
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()