01
Dataset selection
Select by domain, geometry and numerical method
Automotive · Ahmed bodyAhmedML500 geometries · Hybrid RANS–LES · About 2 TB Automotive · Windsor bodyWindsorML355 geometries · WMLES · About 8 TB Automotive · DrivAer notchbackDrivAerML500-geometry design space · Scale-resolving CFD · About 31 TB Aerospace · NASA CRM-HLHiLiftAeroML1,800 cases · Explicit WMLES · About 66.9 TB stored
02
Client setup
Install the Hugging Face command-line client
The hf command is provided by huggingface_hub. The optional hf_xet package supports repositories stored with Xet.
Terminal
python -m pip install -U huggingface_hub hf_xet
hf auth login The datasets are public. Authentication is still useful for reliable Hub access and higher rate limits; keep tokens out of scripts and repositories.
03
Repository inspection
Estimate a transfer with --dry-run
A dry run lists matching files and reports the estimated transfer without downloading them.
AhmedML full-repository preview
hf download neashton/ahmedml \
--type dataset \
--local-dir ./ahmedml_data \
--dry-run Replace the repository ID with neashton/windsorml, neashton/drivaerml or nvidia/HiLiftAeroML. Each dataset page provides a builder for its actual file patterns.
04
File selection
Select data products explicitly
Selective AhmedML preview
hf download neashton/ahmedml \
--type dataset \
--local-dir ./ahmedml_data \
--include "force_mom_all.csv" \
--include "geo_parameters_all.csv" \
--include "run_*/ahmed_*.stl" \
--dry-run - Tabular dataConsolidated CSV files contain geometry parameters and integrated coefficients.
- GeometrySTL or STEP files provide geometric input for shape-based models.
- Surface fieldsVTP or VTU boundary files contain spatially resolved surface quantities.
- Volume fieldsThree-dimensional field files have the largest storage and processing requirements.
05
Transfer
Review the estimate before removing --dry-run
- Confirm the reported byte count and number of files.
- Allow additional working space for compressed archives and derived training data.
- Use a persistent filesystem; large transfers may need to resume.
- Record the repository revision or commit hash used by an experiment.
- Review dataset-specific known constraints before creating splits.
File formats
Formats used in the catalogue
- CSV
- Geometry parameters, reference values and integrated force or moment coefficients.
- STL / STEP
- Tessellated surfaces and CAD geometry suitable for geometric preprocessing.
- VTP / VTU
- VTK polygonal or unstructured-grid data containing surface and volume fields.
- TGZ
- Compressed archives that require extra local space when unpacked.
- NPY / JSON
- NumPy arrays, evaluation weights, manifests and deterministic split definitions.