File size: 1,010 Bytes
1f6c973 234c52e 1f6c973 |
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 |
---
license: mit
dataset_info:
features:
- name: kappa
dtype:
array3_d:
shape:
- 101
- 1424
- 176
dtype: float16
- name: theta
dtype:
array2_d:
shape:
- 101
- 5
dtype: float32
splits:
- name: train
num_bytes: 13108270080
num_examples: 256
download_size: 6934979115
dataset_size: 13108270080
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# FAIR Universe - NeurIPS 2025 Weak Lensing Uncertainty Challenge
This dataset is a HF mirror of the official challenge training data for this challenge:
https://www.codabench.org/competitions/8934/
To ease the split along the nuisance parameter axis, the dataset challenge has been reordered as
```
ncosmo, np, ... -> np, ncosmo, ...
```
To get started:
```python
import datasets
dset = datasets.load_dataset("cosmostat/neurips-wl-challenge")
dset = dset.with_format('torch')
example = dset['train'][0]
``` |