Update README.md
Browse files
README.md
CHANGED
@@ -1,48 +1,81 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
path: data/validation-*
|
9 |
-
- split: test
|
10 |
-
path: data/test-*
|
11 |
-
dataset_info:
|
12 |
-
features:
|
13 |
-
- name: object_id
|
14 |
-
dtype: int64
|
15 |
-
- name: times_wv
|
16 |
-
sequence:
|
17 |
-
sequence: float64
|
18 |
-
- name: lightcurve
|
19 |
-
sequence:
|
20 |
-
sequence: float64
|
21 |
-
- name: label
|
22 |
-
dtype: int64
|
23 |
-
- name: redshift
|
24 |
-
dtype: float64
|
25 |
-
- name: hostgal_specz
|
26 |
-
dtype: float64
|
27 |
-
- name: hostgal_photoz
|
28 |
-
dtype: float64
|
29 |
-
- name: hostgal_photoz_err
|
30 |
-
dtype: float64
|
31 |
-
- name: ddf_bool
|
32 |
-
dtype: int64
|
33 |
-
splits:
|
34 |
-
- name: train
|
35 |
-
num_bytes: 85244224
|
36 |
-
num_examples: 7066
|
37 |
-
- name: validation
|
38 |
-
num_bytes: 18868096
|
39 |
-
num_examples: 1564
|
40 |
-
- name: test
|
41 |
-
num_bytes: 42138224960
|
42 |
-
num_examples: 3492890
|
43 |
-
download_size: 13017186909
|
44 |
-
dataset_size: 42242337280
|
45 |
---
|
46 |
-
# Dataset Card for "PLAsTiCC"
|
47 |
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
task_categories:
|
3 |
+
- feature-extraction
|
4 |
+
tags:
|
5 |
+
- astro
|
6 |
+
size_categories:
|
7 |
+
- 1M<n<10M
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
---
|
|
|
9 |
|
10 |
+
# Astronomical Time-Series Dataset
|
11 |
+
|
12 |
+
This is the full dataset of astronomical time-series from the 2018 Photometric LSST Astronomical Time-Series Classification Challenge (PLAsTiCC) Kaggle competition. There are 18 types of astronomical sources represented, including transient phenomena (e.g. supernovae, kilonovae) and variable objects (e.g. active galactic nuclei, Mira variables).
|
13 |
+
|
14 |
+
The original Kaggle competition can be found [here](https://www.kaggle.com/c/PLAsTiCC-2018). [This note](https://arxiv.org/abs/1810.00001) from the competition describes the dataset in detail. Astronomers may be interested in [this paper](https://arxiv.org/abs/1903.11756) describing the simulations used to generate the data.
|
15 |
+
|
16 |
+
## Dataset Structure
|
17 |
+
|
18 |
+
### Data Fields
|
19 |
+
|
20 |
+
- **object_id**: unique object identifier
|
21 |
+
- **times_wv**: 2D array of shape (N, 2) containing the observation times (modified Julian days, MJD) and filter (wavelength) for each observation, N=number of observations\
|
22 |
+
- **target**: 2D array of shape (N, 2) containing the flux (arbitrary units) and flux error for each observation\
|
23 |
+
- **label**: integer representing the class of the object (see below)\
|
24 |
+
- **redshift**: true redshift of the object\
|
25 |
+
- **ddf**: 1 if the object was in the deep drilling fields (DDF) survey area of LSST, 0 if wide-fast-deep (WFD)\
|
26 |
+
- **hostgal_specz**: spectroscopic redshift of the host galaxy\
|
27 |
+
- **hostgal_photoz**: photometric redshift of the host galaxy\
|
28 |
+
- **hostgal_photoz_err**: uncertainty on the photometric redshift
|
29 |
+
|
30 |
+
### Data Splits
|
31 |
+
|
32 |
+
The original PLAsTiCC challenge had a training set that was biased to be lower redshift, brighter, and higher signal-to-noise than the test set. This was created to emulate a spectroscopically confirmed subset of observations that typically would be used to train a machine learning classifier. The test set represents a realistic simulation of all LSST observations -- fainter and noisier than the training set. In this dataset, the original PLAsTiCC training set was split into 90/10 training/validation and the original test set was uploaded unchanged.
|
33 |
+
|
34 |
+
- **train**: 90% of the PLAsTiCC training set
|
35 |
+
- **validation**: 10% of the PLAsTiCC training set
|
36 |
+
- **test**: full PLAsTiCC test set
|
37 |
+
|
38 |
+
## Additional Information
|
39 |
+
|
40 |
+
### Class Descriptions
|
41 |
+
```
|
42 |
+
6: microlens-single
|
43 |
+
15: tidal disruption event (TDE)
|
44 |
+
16: eclipsing binary (EB)
|
45 |
+
42: type II supernova (SNII)
|
46 |
+
52: peculiar type Ia supernova (SNIax)
|
47 |
+
53: Mira variable
|
48 |
+
62: type Ibc supernova(SNIbc)
|
49 |
+
64: kilonova (KN)
|
50 |
+
65: M-dwarf
|
51 |
+
67: peculiar type Ia supernova (SNIa-91bg)
|
52 |
+
88: active galactic nuclei (AGN)
|
53 |
+
90: type Ia supernova (SNIa)
|
54 |
+
92: RR-Lyrae (RRL)
|
55 |
+
95: superluminous supernova (SLSN-I)
|
56 |
+
991: microlens-binary
|
57 |
+
992: intermediate luminosity optical transient (ILOT)
|
58 |
+
993: calcium-rich transient (CaRT)
|
59 |
+
994: pair instability supernova (PISN)
|
60 |
+
995: microlens-string
|
61 |
+
```
|
62 |
+
|
63 |
+
### Citation Information
|
64 |
+
```
|
65 |
+
@ARTICLE{2018arXiv181000001T,
|
66 |
+
author = {{The PLAsTiCC team} and {Allam}, Tarek, Jr. and {Bahmanyar}, Anita and {Biswas}, Rahul and {Dai}, Mi and {Galbany}, Llu{\'\i}s and {Hlo{\v{z}}ek}, Ren{\'e}e and {Ishida}, Emille E.~O. and {Jha}, Saurabh W. and {Jones}, David O. and {Kessler}, Richard and {Lochner}, Michelle and {Mahabal}, Ashish A. and {Malz}, Alex I. and {Mandel}, Kaisey S. and {Mart{\'\i}nez-Galarza}, Juan Rafael and {McEwen}, Jason D. and {Muthukrishna}, Daniel and {Narayan}, Gautham and {Peiris}, Hiranya and {Peters}, Christina M. and {Ponder}, Kara and {Setzer}, Christian N. and {The LSST Dark Energy Science Collaboration} and {LSST Transients}, The and {Variable Stars Science Collaboration}},
|
67 |
+
title = "{The Photometric LSST Astronomical Time-series Classification Challenge (PLAsTiCC): Data set}",
|
68 |
+
journal = {arXiv e-prints},
|
69 |
+
keywords = {Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Solar and Stellar Astrophysics},
|
70 |
+
year = 2018,
|
71 |
+
month = sep,
|
72 |
+
eid = {arXiv:1810.00001},
|
73 |
+
pages = {arXiv:1810.00001},
|
74 |
+
doi = {10.48550/arXiv.1810.00001},
|
75 |
+
archivePrefix = {arXiv},
|
76 |
+
eprint = {1810.00001},
|
77 |
+
primaryClass = {astro-ph.IM},
|
78 |
+
adsurl = {https://ui.adsabs.harvard.edu/abs/2018arXiv181000001T},
|
79 |
+
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
|
80 |
+
}
|
81 |
+
```
|