b-remy commited on
Commit
1f6c973
·
verified ·
1 Parent(s): a911e37

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -3
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ dataset_info:
4
+ features:
5
+ - name: kappa
6
+ dtype:
7
+ array3_d:
8
+ shape:
9
+ - 101
10
+ - 1424
11
+ - 176
12
+ dtype: float16
13
+ - name: theta
14
+ dtype:
15
+ array2_d:
16
+ shape:
17
+ - 101
18
+ - 5
19
+ dtype: float32
20
+ splits:
21
+ - name: train
22
+ num_bytes: 13108270080
23
+ num_examples: 256
24
+ download_size: 6934979115
25
+ dataset_size: 13108270080
26
+ configs:
27
+ - config_name: default
28
+ data_files:
29
+ - split: train
30
+ path: data/train-*
31
+ ---
32
+
33
+ # FAIR Universe - NeurIPS 2025 Weak Lensing Uncertainty Challenge
34
+ This dataset is a HF mirror of the official challenge training data for this challenge:
35
+
36
+ https://www.codabench.org/competitions/8934/
37
+
38
+ To ease the split along the nuisance parameter axis, the dataset challenge has been reordered as
39
+ ```
40
+ ncosmo, np, ... -> np, ncosmo, ...
41
+ ```
42
+
43
+ To get started:
44
+
45
+ ```python
46
+ import datasets
47
+
48
+ dset = datasets.load_dataset("b-remy/neurips-wl-challenge")
49
+ dset = dset.with_format('torch')
50
+
51
+ example = dset['train'][0]
52
+ ```