EiffL commited on
Commit
660496a
·
verified ·
1 Parent(s): 61318ce

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -26
README.md CHANGED
@@ -1,26 +1,45 @@
1
- ---
2
- license: mit
3
- dataset_info:
4
- features:
5
- - name: kappa
6
- dtype:
7
- array2_d:
8
- shape:
9
- - 1424
10
- - 176
11
- dtype: float16
12
- - name: theta
13
- list: float32
14
- length: 5
15
- splits:
16
- - name: train
17
- num_bytes: 13108164608
18
- num_examples: 25856
19
- download_size: 6934677515
20
- dataset_size: 13108164608
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ dataset_info:
4
+ features:
5
+ - name: kappa
6
+ dtype:
7
+ array2_d:
8
+ shape:
9
+ - 1424
10
+ - 176
11
+ dtype: float16
12
+ - name: theta
13
+ list: float32
14
+ length: 5
15
+ splits:
16
+ - name: train
17
+ num_bytes: 13108164608
18
+ num_examples: 25856
19
+ download_size: 6934677515
20
+ dataset_size: 13108164608
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: train
25
+ path: data/train-*
26
+ ---
27
+ # FAIR Universe - NeurIPS 2025 Weak Lensing Uncertainty Challenge
28
+
29
+ This dataset is a HF mirror of the official challenge training data for this challenge:
30
+
31
+ https://www.codabench.org/competitions/8934/
32
+
33
+ No further processing has been applied to it, it is purely intended to simplify access to the challenge.
34
+
35
+ To get started:
36
+
37
+ ```python
38
+ import datasets
39
+
40
+ dset = datasets.load_dataset("eiffl/neurips-wl-challenge")
41
+ dset = dset.with_format('jax')
42
+
43
+ example = dset['train'][0]
44
+ ```
45
+