Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/hdf5/hdf5.py", line 60, in _split_generators
                  with h5py.File(f, "r") as h5:
                       ~~~~~~~~~^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/h5py/_hl/files.py", line 555, in __init__
                  fid = make_fid(name, mode, userblock_size, fapl, fcpl, swmr=swmr)
                File "/usr/local/lib/python3.14/site-packages/h5py/_hl/files.py", line 232, in make_fid
                  fid = h5f.open(name, flags, fapl=fapl)
                File "h5py/_objects.pyx", line 54, in h5py._objects.with_phil.wrapper
                File "h5py/_objects.pyx", line 55, in h5py._objects.with_phil.wrapper
                File "h5py/h5f.pyx", line 106, in h5py.h5f.open
              OSError: Unable to synchronously open file (file signature not found)
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ~~~~~~~~~~~~~~~~~~~~~~~^
                      path=dataset,
                      ^^^^^^^^^^^^^
                      config_name=config,
                      ^^^^^^^^^^^^^^^^^^^
                      token=hf_token,
                      ^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                      path,
                  ...<6 lines>...
                      **config_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Text2PDE: Latent Diffusion Models for Accessible Physics Simulation (Pretrained Models and Datasets)

Pretrained Models

The pretrained models are:

- Autoencoders:
    - ae_cylinder.ckpt : autoencoder trained to compress cylinder mesh data across 25 timesteps. Does not use GAN or LPIPS.
    - ae_ns2D.ckpt: autoencoder trained to compress smoke buoyancy data (48x128x128). Does not use GAN or LPIPS.
- LDMs:
    - cylinder flow
        - ldm_DiT_FF_cylinder.ckpt: ldm model trained to sample a cylinder flow solution conditioned on the first frame
        - ldm_DiTSmall_FF_cylinder.ckpt: same as previous, just smaller DiT size.
        - ldm_DiT_text_cylinder.ckpt: ldm model trained to sample a cylinder flow solution conditioned on a text prompt
        - ldm_DiTSmall_text_cylinder.ckpt: same as previous, just smaller DiT size.
    - ns2D
        - ldm_DiT_FF_ns2D.ckpt: ldm model trained to sample a smoke buoyancy solution conditioned on the first frame
        - ldm_DiTSmall_FF_ns2D.ckpt: same as previous, just smaller DiT size.
        - ldm_DiTLarge_FF_ns2D.ckpt: same as previous, just large DiT size.
        - ldm_DiT_text_ns2D.ckpt: ldm model trained to sample a smoke buoyancy solution conditioned on a text prompt
        - ldm_DiTSmall_text_ns2D.ckpt: same as previous, just smaller DiT size.
        - ldm_DiTLarge_text_ns2D.ckpt: same as previous, just large DiT size.

Cylinder Flow Dataset

  • 1000/100 train/valid samples
  • Incompressible NS in water, Re ~100-1000, dt = 0.01
  • Around 2000 mesh points, downsampled to 25 timesteps
  • Each data sample has a different shape, so they cannot be stacked. Therefore each data sample is in its own numbered dictionary ('0' has sample 0, '1' has sample 1, etc.).
  • Data Structure:
- dataset.h5 (keys: '0', '1', ... etc.)
    - '0' (keys: 'cells', 'mesh_pos', 'metadata', 'node_type', 'pressure', 'u', 'v')
        - 'cells': shape (num_edges, 3). Defines connectivity in triangular mesh. Only used for plotting
        - 'mesh_pos': shape (num_nodes, 2). Defines the position of each node in the mesh. 
        - 'node_type': shape (num_nodes, 1). Defines type of each node (0=fluid, 4=inlet, 5=outlet, 6=boundaries/walls)
        - 'pressure': shape (num_timesteps, num_nodes, 1). Defines pressure at each timestep for all mesh points.
        - 'u': shape (num_timesteps, num_nodes). Defines x-component of velocity at each timestep for all mesh points.
        - 'v': shape (num_timesteps, num_nodes). Defines y-component of velocity at each timestep for all mesh points.
        - 'metadata': (keys: 'center', 'domain_x', 'domain_y', 'prompt', 'radius', 'reynolds_number', 't_end', 'u_inlet', 'v_inlet')
            - 'center': shape (2,). Extracted center of cylinder, in meters.
            - 'domain_x': shape (2,). Bounds of x in the domain, in meters.
            - 'domain_y': shape (2,). Bounds of y in the domain, in meters.
            - 'prompt': shape(). Procedurally generated prompt using template in paper. Read with ['prompt'].asstr()[()].
            - 'radius': shape (). Extracted radius if cylinder, in meters. 
            - 'reynolds_number': shape (). Extracted Reynolds number of simulation.
            - 't_end': shape (). Final time of simulation.
            - 'u_inlet': shape(). x-component of velocity at the inlet.
            - 'v_inlet': shape(). y-component of velocity at the inlet.
    - '1', '2', ... etc.

Smoke Buoyancy Dataset (NS2D)

  • 2496/608 train/valid samples.
    • Datasets are divided into separates files with 32 samples each. This results in 78 training files (78x32=2496) and 19 valid files (19x32=608)
  • Smoke driven by a buoyant force, dt=1.5
  • 128x128 spatial resolution, with 56 timesteps.
  • Each file contains 32 samples for a given seed, with uniform shape. The text captions are not uniform, so they are stored in a numbered dictionary as well.
  • Data Structure:
- dataset.h5 (keys: 'train' or 'valid')
    - 'train' (keys: 'buo_y', 'dt', 'dx', 'dy', 't', 'text_labels', 'u', 'vx', 'vy', 'x', 'y')
        - 'buo_y': shape (32,). Contains a scalar buoyancy factor for each sample.
        - 'dt', 'dx', 'dy': shape (32,). Contains a scalar dt, dx, or dy for each sample.
        - 't': shape (32, num_timesteps). Contains the time at each timestep for each sample.
        - 'vx': shape (32, num_timesteps, resolution_x, resolution_y). Contains the x-component of velocity at each nodal position, timestep, and sample. 
        - 'y': shape (32, num_timesteps, resolution_x, resolution_y). Contains the y-component of velocity at each nodal position, timestep, and sample. 
        - 'u': shape (32, num_timesteps, resolution_x, resolution_y). Contains the smoke density at each nodal position, timestep, and sample. 
        - 'x': shape (32, resolution_x). Contains the x-position for each position along the x-axis for each sample.
        - 'y': shape (32, resolution_y). Contains the y-position for each position along the y-axis for each sample.
        - 'text_labels' (keys: '0', '1', ..., '31')
            - '0': shape (). Contains the text caption for the 0-th sample. Read with ['text_labels']['0'].asstr()[()]
            - '1', '2', ... '31': Contains text caption for the n-th sample.
Downloads last month
107