File size: 1,857 Bytes
22c9c21 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | ---
license: cc-by-4.0
---
# gwBenchmarks Dataset Files
This repository hosts dataset artifacts for the `gwBenchmarks` codebase:
```text
https://github.com/tousifislam/gwBenchmarks
```
The GitHub repository contains benchmark code, curation scripts, prompts, and
evaluators. This Hugging Face dataset repository stores the binary benchmark
artifacts that should not be committed to GitHub.
## Directory Layout
Use one top-level directory per benchmark:
```text
waveform/
remnant/
dynamics/
ringdown/
analytic/
validity/
template_bank/
```
Each benchmark directory should contain:
- the data files used by that benchmark
- a short `README.md` describing file names, shapes, and provenance
- checksums or generation details when available
Recommended file names match the paths expected by `gwBenchmarks`:
```text
waveform/waveform_training.h5
waveform/waveform_validation.h5
remnant/remnant_training.h5
remnant/remnant_validation.h5
dynamics/dynamics_training.h5
dynamics/dynamics_validation.h5
ringdown/ringdown_training.h5
ringdown/ringdown_validation.h5
analytic/analytic_training.h5
analytic/analytic_validation.h5
validity/validity_training.h5
validity/validity_validation.h5
template_bank/f_amp.npy
template_bank/Aref_weights.npy
template_bank/bank_wf_params.npy
template_bank/bank_wf_params_test.npy
template_bank/calpha_grid_params.npy
```
## Uploading New Benchmark Data
Clone this dataset repository, add files under the appropriate benchmark
directory, and push:
```bash
git clone https://huggingface.co/datasets/GWagents/gwBenchmarks
cd gwBenchmarks
mkdir -p waveform
cp /path/to/waveform_training.h5 waveform/
cp /path/to/waveform_validation.h5 waveform/
git add waveform
git commit -m "Add waveform benchmark data"
git push
```
The repository uses Git LFS for binary artifacts including `.h5`, `.hdf5`,
`.npy`, and `.npz` files.
|