Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -8,8 +8,10 @@ tags:
|
|
| 8 |
- simulation
|
| 9 |
- convergence-maps
|
| 10 |
- des-y3
|
|
|
|
|
|
|
| 11 |
size_categories:
|
| 12 |
-
-
|
| 13 |
---
|
| 14 |
|
| 15 |
# Gower Street DES Y3 Lensing Tiles
|
|
@@ -18,33 +20,75 @@ Weak lensing convergence map tiles extracted from the [Gower Street](http://star
|
|
| 18 |
|
| 19 |
## Dataset Description
|
| 20 |
|
| 21 |
-
Each sample contains a (4, H, W) convergence map tile covering ~3400 deg
|
|
|
|
|
|
|
| 22 |
|
| 23 |
### Configurations
|
| 24 |
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
### Loading
|
| 36 |
|
| 37 |
```python
|
| 38 |
from datasets import load_dataset
|
| 39 |
|
| 40 |
-
# Load a specific lmax configuration
|
| 41 |
-
ds = load_dataset("EiffL/GowerStreetDESY3", data_dir="data/
|
| 42 |
|
| 43 |
-
# Access a sample
|
| 44 |
sample = ds["train"][0]
|
| 45 |
-
kappa = sample["kappa"]
|
| 46 |
-
omega_m = sample["Omega_m"]
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
```
|
| 49 |
|
| 50 |
### Fields
|
|
@@ -55,6 +99,7 @@ s8 = sample["S8"] # S8 = sigma_8 * sqrt(Omega_m / 0.3)
|
|
| 55 |
| `sim_id` | int | Gower Street simulation ID (1-791) |
|
| 56 |
| `orientation_id` | int | Rotation orientation (0-2) |
|
| 57 |
| `tile_id` | int | Equatorial tile index (0-3) |
|
|
|
|
| 58 |
| `Omega_m` | float | Matter density parameter |
|
| 59 |
| `sigma_8` | float | RMS density fluctuation amplitude |
|
| 60 |
| `S8` | float | S8 = sigma_8 * sqrt(Omega_m / 0.3) |
|
|
@@ -67,10 +112,10 @@ s8 = sample["S8"] # S8 = sigma_8 * sqrt(Omega_m / 0.3)
|
|
| 67 |
## Pipeline
|
| 68 |
|
| 69 |
1. **N-body simulations**: Gower Street suite (791 simulations with varying cosmological parameters)
|
| 70 |
-
2. **Raytracing**: Born-approximation lensing through
|
| 71 |
-
3. **
|
| 72 |
-
4. **
|
| 73 |
-
5. **
|
| 74 |
|
| 75 |
### Rotations
|
| 76 |
|
|
|
|
| 8 |
- simulation
|
| 9 |
- convergence-maps
|
| 10 |
- des-y3
|
| 11 |
+
- lsst
|
| 12 |
+
- shape-noise
|
| 13 |
size_categories:
|
| 14 |
+
- 100K<n<1M
|
| 15 |
---
|
| 16 |
|
| 17 |
# Gower Street DES Y3 Lensing Tiles
|
|
|
|
| 20 |
|
| 21 |
## Dataset Description
|
| 22 |
|
| 23 |
+
Each sample contains a (4, H, W) convergence map tile covering ~3400 deg², corresponding to 4 DES Y3 MagLim tomographic bins. Tiles are extracted from equatorial HEALPix base faces after harmonic-space filtering and rotation for data augmentation.
|
| 24 |
+
|
| 25 |
+
The dataset includes **15 configurations** (5 angular scale cuts x 3 noise levels), with ~9400 tiles per configuration from 787 simulations (12 tiles per sim: 3 rotations x 4 equatorial tiles).
|
| 26 |
|
| 27 |
### Configurations
|
| 28 |
|
| 29 |
+
Each configuration is identified by `lmax_{lmax}_{noise_level}` and stored in a separate data directory:
|
| 30 |
+
|
| 31 |
+
| lmax | Tile size | Angular scales | nside | Noise levels |
|
| 32 |
+
|------|-----------|---------------|-------|--------------|
|
| 33 |
+
| 200 | 128x128 | > 0.9 deg | 128 | noiseless, des_y3, lsst_y10 |
|
| 34 |
+
| 400 | 256x256 | > 0.45 deg | 256 | noiseless, des_y3, lsst_y10 |
|
| 35 |
+
| 600 | 256x256 | > 0.3 deg | 256 | noiseless, des_y3, lsst_y10 |
|
| 36 |
+
| 800 | 512x512 | > 0.23 deg | 512 | noiseless, des_y3, lsst_y10 |
|
| 37 |
+
| 1000 | 512x512 | > 0.18 deg | 512 | noiseless, des_y3, lsst_y10 |
|
| 38 |
+
|
| 39 |
+
### Noise levels
|
| 40 |
+
|
| 41 |
+
Shape noise arises from the intrinsic ellipticity dispersion of source galaxies. For a HEALPix pixel at resolution nside, the noise standard deviation per pixel per tomographic bin is:
|
| 42 |
+
|
| 43 |
+
```
|
| 44 |
+
sigma_pix = sigma_e / sqrt(2 * n_eff * A_pix)
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
where `sigma_e` is the per-component intrinsic ellipticity dispersion, `n_eff` is the effective galaxy number density (in sr⁻¹), and `A_pix = 4pi / N_pix` is the pixel solid angle. The factor of 2 accounts for two ellipticity components. Noise is Gaussian and independent per pixel.
|
| 48 |
+
|
| 49 |
+
Shape noise is added to the full-sky nside=1024 convergence map **before** harmonic filtering, so the noise is band-limited consistently with the signal. For a given (sim_id, noise_level), the same noise realization is shared across all lmax cuts and orientations. RNG seed: `sim_id * 1000 + noise_level_index`.
|
| 50 |
|
| 51 |
+
#### `noiseless`
|
| 52 |
+
|
| 53 |
+
No shape noise added. Pure signal from the Born-approximation raytracing.
|
| 54 |
+
|
| 55 |
+
#### `des_y3` — DES Year 3 ([Amon et al. 2022](https://arxiv.org/abs/2105.13543), Table 1)
|
| 56 |
+
|
| 57 |
+
Per-bin effective number density and intrinsic ellipticity dispersion from the DES Y3 MagLim sample:
|
| 58 |
+
|
| 59 |
+
| Bin | n_eff (arcmin⁻²) | sigma_e |
|
| 60 |
+
|-----|-------------------|---------|
|
| 61 |
+
| 0 | 1.476 | 0.243 |
|
| 62 |
+
| 1 | 1.479 | 0.262 |
|
| 63 |
+
| 2 | 1.484 | 0.259 |
|
| 64 |
+
| 3 | 1.461 | 0.301 |
|
| 65 |
+
|
| 66 |
+
#### `lsst_y10` — LSST Year 10 ([DESC SRD](https://arxiv.org/abs/1809.01669))
|
| 67 |
+
|
| 68 |
+
| Bin | n_eff (arcmin⁻²) | sigma_e |
|
| 69 |
+
|-----|-------------------|---------|
|
| 70 |
+
| 0-3 | 6.75 | 0.26 |
|
| 71 |
+
|
| 72 |
+
Total n_eff = 27 arcmin⁻² split uniformly across 4 bins to match the DES tomographic structure.
|
| 73 |
|
| 74 |
### Loading
|
| 75 |
|
| 76 |
```python
|
| 77 |
from datasets import load_dataset
|
| 78 |
|
| 79 |
+
# Load a specific (lmax, noise_level) configuration
|
| 80 |
+
ds = load_dataset("EiffL/GowerStreetDESY3", data_dir="data/lmax_600_des_y3")
|
| 81 |
|
|
|
|
| 82 |
sample = ds["train"][0]
|
| 83 |
+
kappa = sample["kappa"] # (4, 256, 256) convergence map
|
| 84 |
+
omega_m = sample["Omega_m"] # Matter density parameter
|
| 85 |
+
noise = sample["noise_level"] # "des_y3"
|
| 86 |
+
|
| 87 |
+
# Load noiseless version at same angular scale
|
| 88 |
+
ds_clean = load_dataset("EiffL/GowerStreetDESY3", data_dir="data/lmax_600_noiseless")
|
| 89 |
+
|
| 90 |
+
# Load LSST-depth version
|
| 91 |
+
ds_lsst = load_dataset("EiffL/GowerStreetDESY3", data_dir="data/lmax_600_lsst_y10")
|
| 92 |
```
|
| 93 |
|
| 94 |
### Fields
|
|
|
|
| 99 |
| `sim_id` | int | Gower Street simulation ID (1-791) |
|
| 100 |
| `orientation_id` | int | Rotation orientation (0-2) |
|
| 101 |
| `tile_id` | int | Equatorial tile index (0-3) |
|
| 102 |
+
| `noise_level` | string | Noise level: "noiseless", "des_y3", or "lsst_y10" |
|
| 103 |
| `Omega_m` | float | Matter density parameter |
|
| 104 |
| `sigma_8` | float | RMS density fluctuation amplitude |
|
| 105 |
| `S8` | float | S8 = sigma_8 * sqrt(Omega_m / 0.3) |
|
|
|
|
| 112 |
## Pipeline
|
| 113 |
|
| 114 |
1. **N-body simulations**: Gower Street suite (791 simulations with varying cosmological parameters)
|
| 115 |
+
2. **Raytracing**: Born-approximation lensing through particle lightcone shells (nside=2048 input, nside=1024 output), weighted by DES Y3 MagLim n(z) distributions (4 tomographic bins)
|
| 116 |
+
3. **Shape noise injection**: Gaussian noise added per pixel at nside=1024, calibrated to DES Y3 or LSST Y10 survey depth
|
| 117 |
+
4. **Harmonic filtering**: `map2alm(lmax)` -> `rotate_alm(euler)` -> `alm2map(nside_down)` ensures all tiles see identical harmonic-space processing
|
| 118 |
+
5. **Tile extraction**: 3 fixed rotations x 4 equatorial HEALPix base tiles = 12 tiles per simulation per configuration
|
| 119 |
|
| 120 |
### Rotations
|
| 121 |
|