File size: 1,822 Bytes
ff7c11e
 
2402bef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ff7c11e
538474c
 
 
 
 
 
 
 
 
 
 
 
 
f67ffc8
 
 
538474c
 
 
 
 
 
 
8f98844
538474c
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
license: mit
dataset_info:
  features:
  - name: objid
    dtype: int32
  - name: times_wv
    dtype:
      array2_d:
        shape:
        - 300
        - 2
        dtype: float64
  - name: target
    dtype:
      array2_d:
        shape:
        - 300
        - 2
        dtype: float64
  - name: label
    dtype:
      class_label:
        names:
          '0': $\mu$-Lens-Single
          '1': TDE
          '2': EB
          '3': SNII
          '4': SNIax
          '5': Mira
          '6': SNIbc
          '7': KN
          '8': M-dwarf
          '9': SNIa-91bg
          '10': AGN
          '11': SNIa
          '12': RRL
          '13': SLSN-I
          '14': extra
  - name: redshift
    dtype: float32
  splits:
  - name: train
    num_bytes: 75438576
    num_examples: 6274
  - name: validation
    num_bytes: 9402768
    num_examples: 782
  - name: test
    num_bytes: 9523008
    num_examples: 792
  download_size: 33374835
  dataset_size: 94364352
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: validation
    path: data/validation-*
  - split: test
    path: data/test-*
---

## Dataset Structure

### Data Fields

- **object_id**: unique object identifier
- **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
- **target**: 2D array of shape (N, 2) containing the flux (arbitrary units) and flux error for each observation
- **label**: integer representing the class of the object
- **redshift**: true redshift of the object

### Data Splits

- **train**: 
- **validation**: 
- **test**: 

## Usage

```python
from datasets import load_dataset
# Loading the data
dataset = load_dataset("BrachioLab/supernova-timeseries")
dataset
```