rvalerio commited on
Commit
83bb1c9
1 Parent(s): 6e52a8e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -115,13 +115,15 @@ pip install datasets
115
  ```python
116
  import huggingface_hub
117
 
118
- dataset_name = "inductiva/windtunnel"
119
 
120
  # Download the entire dataset
121
  huggingface_hub.snapshot_download(repo_id=dataset_name, repo_type="dataset")
122
 
123
  # Download to a specific local directory
124
- huggingface_hub.snapshot_download(repo_id=dataset_name, repo_type="dataset", local_dir="local_folder")
 
 
125
 
126
  # Download only the simulation metadata across all simulations
127
  huggingface_hub.snapshot_download(
@@ -138,7 +140,7 @@ huggingface_hub.snapshot_download(
138
  import datasets
139
 
140
  # Load the dataset (streaming is supported)
141
- dataset = datasets.load_dataset("inductiva/windtunnel", streaming=False)
142
 
143
  # Display dataset information
144
  print(dataset)
 
115
  ```python
116
  import huggingface_hub
117
 
118
+ dataset_name = "inductiva/windtunnel-20k"
119
 
120
  # Download the entire dataset
121
  huggingface_hub.snapshot_download(repo_id=dataset_name, repo_type="dataset")
122
 
123
  # Download to a specific local directory
124
+ huggingface_hub.snapshot_download(
125
+ repo_id=dataset_name, repo_type="dataset", local_dir="local_folder"
126
+ )
127
 
128
  # Download only the simulation metadata across all simulations
129
  huggingface_hub.snapshot_download(
 
140
  import datasets
141
 
142
  # Load the dataset (streaming is supported)
143
+ dataset = datasets.load_dataset("inductiva/windtunnel-20k", streaming=False)
144
 
145
  # Display dataset information
146
  print(dataset)