bsk-2001 commited on
Commit
b4368cb
·
verified ·
1 Parent(s): 9079419

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -3
README.md CHANGED
@@ -14,9 +14,9 @@ pretty_name: Fluidverse Samples
14
  # Fluidverse Samples
15
 
16
  This dataset provides sample files for all of the datasets published by the Fluidverse Organization.
17
- For each dataset two trajectories are provided - one with a single bubble / droplet and one multi-droplet / bubble trajectory with five bubbles / droplets.
18
 
19
- **Notice:** This is not a standalone dataset with a test and train split. This huggingface dataset serves solely as a preview for the complete dataset.
20
 
21
  ## Dataset samples
22
 
@@ -27,4 +27,23 @@ For each dataset two trajectories are provided - one with a single bubble / drop
27
  |2D Shock-Induced Droplet Breakup in Air with Symmetric BC|2D_SDBA_SSOO|https://huggingface.co/datasets/FluidVerse/2D_SDBA_SSOO|
28
  |2D Shock-Induced R22 Bubble Collapse in Air with Open BC|2D_SRBA_OOOO|https://huggingface.co/datasets/FluidVerse/2D_SRBA_OOOO|
29
  |3D Shock-Induced Air Bubble Collapse in Water with Symmetric BC|3D_SABW_SSOOSS|https://huggingface.co/datasets/FluidVerse/3D_SABW_SSOOSS|
30
- |3D Shock-Induced Droplet Breakup in Air with Symmetric BC|3D_SDBA_SSOOSS|https://huggingface.co/datasets/FluidVerse/3D_SDBA_SSOOSS|
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  # Fluidverse Samples
15
 
16
  This dataset provides sample files for all of the datasets published by the Fluidverse Organization.
17
+ For each dataset, two trajectories are provided - one with a single bubble / droplet and one multi-droplet / bubble trajectory with five bubbles / droplets.
18
 
19
+ **Note:** This is not a standalone dataset with a test and train split. This huggingface dataset serves solely as a preview for the complete datasets listed below.
20
 
21
  ## Dataset samples
22
 
 
27
  |2D Shock-Induced Droplet Breakup in Air with Symmetric BC|2D_SDBA_SSOO|https://huggingface.co/datasets/FluidVerse/2D_SDBA_SSOO|
28
  |2D Shock-Induced R22 Bubble Collapse in Air with Open BC|2D_SRBA_OOOO|https://huggingface.co/datasets/FluidVerse/2D_SRBA_OOOO|
29
  |3D Shock-Induced Air Bubble Collapse in Water with Symmetric BC|3D_SABW_SSOOSS|https://huggingface.co/datasets/FluidVerse/3D_SABW_SSOOSS|
30
+ |3D Shock-Induced Droplet Breakup in Air with Symmetric BC|3D_SDBA_SSOOSS|https://huggingface.co/datasets/FluidVerse/3D_SDBA_SSOOSS|
31
+
32
+ ## How to Download the Dataset
33
+
34
+ Download the whole dataset:
35
+ ```
36
+ hf download FluidVerse/samples --repo-type dataset
37
+ ```
38
+
39
+ Download only one dataset sample:
40
+ ```
41
+ from huggingface_hub import snapshot_download
42
+
43
+ snapshot_download(
44
+ repo_id="FluidVerse/samples",
45
+ repo_type="dataset",
46
+ allow_patterns="2D_SABW_OOOO_256x256_samples.h5",
47
+ local_dir="."
48
+ )
49
+ ```