Datasets:
Add/Update README and hero figure
#2
by tbussozungri - opened
- README.md +122 -52
- example_figure.png +3 -0
README.md
CHANGED
|
@@ -1,55 +1,125 @@
|
|
| 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: default
|
| 4 |
+
data_dir: mmu_vipers_w4/dataset
|
| 5 |
+
tags:
|
| 6 |
+
- astronomy
|
| 7 |
+
license: cc-by-4.0
|
| 8 |
+
pretty_name: mmu_vipers_w4
|
| 9 |
+
size_categories:
|
| 10 |
+
- 10K<n<100K
|
| 11 |
---
|
| 12 |
|
| 13 |
+
<div align="center">
|
| 14 |
+
<img src="example_figure.png" width="600">
|
| 15 |
+
</div>
|
| 16 |
+
|
| 17 |
+
# mmu_vipers_w4 HATS Catalog Collection
|
| 18 |
+
|
| 19 |
+
This is the collection of HATS catalogs representing mmu_vipers_w4.
|
| 20 |
+
|
| 21 |
+
This dataset is part of the [Multimodal Universe](https://github.com/MultimodalUniverse/MultimodalUniverse),
|
| 22 |
+
a large-scale collection of multimodal astronomical data. For full details, see the paper:
|
| 23 |
+
[The Multimodal Universe: Enabling Large-Scale Machine Learning with 100TBs of Astronomical Scientific Data](https://arxiv.org/abs/2412.02527).
|
| 24 |
+
|
| 25 |
+
### Access the catalog
|
| 26 |
+
|
| 27 |
+
We recommend the use of the [LSDB](https://lsdb.io) Python framework to access HATS catalogs.
|
| 28 |
+
LSDB can be installed via `pip install lsdb` or `conda install conda-forge::lsdb`,
|
| 29 |
+
see more details [in the docs](https://docs.lsdb.io/).
|
| 30 |
+
The following code provides a minimal example of opening this catalog:
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
import lsdb
|
| 34 |
+
|
| 35 |
+
# Full sky coverage.
|
| 36 |
+
catalog = lsdb.open_catalog("https://huggingface.co/datasets/LSDB/mmu_vipers_w4")
|
| 37 |
+
# One-degree cone.
|
| 38 |
+
catalog = lsdb.open_catalog(
|
| 39 |
+
"https://huggingface.co/datasets/LSDB/mmu_vipers_w4",
|
| 40 |
+
search_filter=lsdb.ConeSearch(ra=333.0, dec=1.0, radius_arcsec=3600.0),
|
| 41 |
+
)
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
Each catalog in this collection is represented as a separate [Apache Parquet dataset](https://arrow.apache.org/docs/python/dataset.html) and can be accessed with a variety of tools, including `pandas`, `pyarrow`, `dask`, `Spark`, `DuckDB`.
|
| 45 |
+
|
| 46 |
+
### File structure
|
| 47 |
+
|
| 48 |
+
This catalog is represented by the following files and directories:
|
| 49 |
+
|
| 50 |
+
- [`collection.properties`](https://huggingface.co/datasets/LSDB/mmu_vipers_w4/collection.properties) � textual metadata file describing the HATS collection of catalogs
|
| 51 |
+
- [`mmu_vipers_w4`](https://huggingface.co/datasets/LSDB/mmu_vipers_w4/mmu_vipers_w4) � main HATS catalog directory
|
| 52 |
+
- [`dataset/`](https://huggingface.co/datasets/LSDB/mmu_vipers_w4/mmu_vipers_w4/dataset/) � Apache Parquet dataset directory for the main catalog
|
| 53 |
+
- ... parquet metadata and data files in sub directories ...
|
| 54 |
+
- [`hats.properties`](https://huggingface.co/datasets/LSDB/mmu_vipers_w4/mmu_vipers_w4/hats.properties) � textual metadata file describing the main HATS catalog
|
| 55 |
+
- [`partition_info.csv`](https://huggingface.co/datasets/LSDB/mmu_vipers_w4/mmu_vipers_w4/partition_info.csv) � CSV file with a list of catalog HEALPix tiles (catalog partitions)
|
| 56 |
+
- [`skymap.fits`](https://huggingface.co/datasets/LSDB/mmu_vipers_w4/mmu_vipers_w4/skymap.fits) � HEALPix skymap FITS file with row-counts per HEALPix tile of fixed order 10
|
| 57 |
+
- [`mmu_vipers_w4_10arcs/`](https://huggingface.co/datasets/LSDB/mmu_vipers_w4/mmu_vipers_w4_10arcs) � default margin catalog to ensure data completeness in cross-matching, the margin threshold is 10.0 arcseconds
|
| 58 |
+
- ... margin catalog files and directories ...
|
| 59 |
+
|
| 60 |
+
### Catalog metadata
|
| 61 |
+
|
| 62 |
+
Metadata of the main HATS catalog, excluding margins and indexes:
|
| 63 |
+
|
| 64 |
+
| **Number of rows** | **Number of columns** | **Number of partitions** | **Size on disk** | **HATS Builder** |
|
| 65 |
+
| --- | --- | --- | --- | --- |
|
| 66 |
+
| 30,979 | 9 | 9 | 321.4 MiB | hats-import v0.7.1, hats v0.7.1 |
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
### Catalog columns
|
| 70 |
+
|
| 71 |
+
The main HATS catalog contains the following columns:
|
| 72 |
+
|
| 73 |
+
| **Name** | **`_healpix_29`** | **`spectrum.flux`** | **`spectrum.ivar`** | **`spectrum.lambda`** | **`spectrum.mask`** | **`REDSHIFT`** | **`REDFLAG`** | **`EXPTIME`** | **`NORM`** | **`MAG`** | **`ra`** | **`dec`** | **`object_id`** |
|
| 74 |
+
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
| 75 |
+
| **Data Type** | int64 | list[float] | list[float] | list[float] | list[float] | float | float | float | float | float | float | float | string |
|
| 76 |
+
| **Nested?** | � | spectrum | spectrum | spectrum | spectrum | � | � | � | � | � | � | � | � |
|
| 77 |
+
| **Value count** | 30,979 | 17,255,303 | 17,255,303 | 17,255,303 | 17,255,303 | 30,979 | 30,979 | 30,979 | 30,979 | 30,979 | 30,979 | 30,979 | 30,979 |
|
| 78 |
+
| **Example row** | 1339537029392400028 | [0.1504, 0.1525, 0.1538, 0.1543, � (557 total)] | [8.585e-17, 1.011e-16, 1.137e-16, � (557 total)] | [5514, 5521, 5529, 5536, 5543, � (557 total)] | [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, � (557 total)] | 0.7298 | 0.7298 | 540 | 2.768 | 21.98 | 333.4 | 1.077 | 404055346.0 |
|
| 79 |
+
| **Minimum value** | 1339504075142965993 | -1759.751953125 | -2.9612807435456968e-18 | 5514.27978515625 | -0.0 | -0.0 | -0.0 | 540.0 | 0.021366773173213005 | 15.182700157165527 | 330.0451965332031 | 0.8620766997337341 | 401007640.0 |
|
| 80 |
+
| **Maximum value** | 1341678248016204204 | 2786.57177734375 | 7.853208785491006e-07 | 9484.1201171875 | 3.0 | 4.395299911499023 | 4.395299911499023 | 540.0 | 3519.447509765625 | 23.96969985961914 | 335.39093017578125 | 2.3695244789123535 | 411162926.0 |
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
"Nested" indicates whether the column is stored as a nested field inside another "struct" column.
|
| 84 |
+
|
| 85 |
+
|
| 86 |
+
"Value count" may be different from the total number of rows for nested columns: each nested element is counted as a single value.
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
|
| 91 |
+
### Crossmatch with another catalog
|
| 92 |
+
|
| 93 |
+
HATS catalogs can be efficiently crossmatched using [LSDB](https://lsdb.io),
|
| 94 |
+
which leverages the HEALPix partitioning to avoid loading the full datasets into memory:
|
| 95 |
+
|
| 96 |
+
```python
|
| 97 |
+
import lsdb
|
| 98 |
+
|
| 99 |
+
mmu_vipers_w4 = lsdb.open_catalog("https://huggingface.co/datasets/LSDB/mmu_vipers_w4")
|
| 100 |
+
other = lsdb.open_catalog("https://huggingface.co/datasets/<org>/<other_catalog>")
|
| 101 |
+
|
| 102 |
+
crossmatched = mmu_vipers_w4.crossmatch(other, radius_arcsec=1.0)
|
| 103 |
+
print(crossmatched)
|
| 104 |
+
```
|
| 105 |
+
|
| 106 |
+
See the [LSDB documentation](https://docs.lsdb.io/) for more details on crossmatching and other operations.
|
| 107 |
+
|
| 108 |
+
### Dataset-specific context
|
| 109 |
+
|
| 110 |
+
**Original survey**
|
| 111 |
+
This dataset is based on the VIMOS Public Extragalactic Redshift Survey (VIPERS), which provides optical spectra of galaxies in the redshift range 0.5 < z < 1.0.
|
| 112 |
+
|
| 113 |
+
**Data modality**
|
| 114 |
+
The dataset consists of fixed-size optical spectra (1 × 557) covering a wavelength range from 5514 Å to 9484 Å. Each spectrum includes flux values, the corresponding wavelength vector, inverse variance (ivar), and a mask indicating the quality of each measurement. The dataset contains approximately 90,000 galaxy spectra.
|
| 115 |
+
|
| 116 |
+
**Typical use cases**
|
| 117 |
+
This dataset has been used in a number of scientific publications, as well as in
|
| 118 |
+
machine learning specific applications, including source identification with SVMs and
|
| 119 |
+
galaxy classification with unsupervised methods.
|
| 120 |
+
|
| 121 |
+
**Caveats**
|
| 122 |
+
The dataset includes spectra that have been normalized and transformed during preprocessing to ensure consistency with other datasets.
|
| 123 |
+
|
| 124 |
+
**Citation**
|
| 125 |
+
This dataset uses data from the VIMOS Public Extragalactic Redshift Survey (VIPERS), obtained with the ESO Very Large Telescope. Users should acknowledge the [VIPERS survey](http://vipers.inaf.it) and its participating institutions.
|
example_figure.png
ADDED
|
Git LFS Details
|