Daniel Kyselica
commited on
Commit
·
dbf38b4
1
Parent(s):
b0700e7
new name
Browse files
README.md
CHANGED
@@ -7,9 +7,9 @@ size_categories:
|
|
7 |
- 1K<n<10K
|
8 |
---
|
9 |
|
10 |
-
#
|
11 |
|
12 |
-
Dataset contains light curves of
|
13 |
|
14 |
Class labels:
|
15 |
- ARIANE 5 R/B
|
@@ -26,7 +26,7 @@ Class labels:
|
|
26 |
```python
|
27 |
>>> from datasets import load_dataset
|
28 |
|
29 |
-
>>> dataset = load_dataset("kyselica/
|
30 |
>>> dataset
|
31 |
DatasetDict({
|
32 |
train: Dataset({
|
@@ -48,6 +48,8 @@ DatasetDict({
|
|
48 |
- `phase` - relative path to the phase values file
|
49 |
- `time` - relative path to the time values file
|
50 |
|
|
|
|
|
51 |
|
52 |
### File structure
|
53 |
|
|
|
7 |
- 1K<n<10K
|
8 |
---
|
9 |
|
10 |
+
# RoBo: New standardized MMT light curve dataset for Rocket Body classification
|
11 |
|
12 |
+
Dataset contains light curves of 6 rocket body types from Mini Mega Tortora database (MMT)[^1]. The dataset was created to be used as a benchmark for rocket body light curve classification.
|
13 |
|
14 |
Class labels:
|
15 |
- ARIANE 5 R/B
|
|
|
26 |
```python
|
27 |
>>> from datasets import load_dataset
|
28 |
|
29 |
+
>>> dataset = load_dataset("kyselica/RoBo6", data_files={"train": "train.csv", "test": "test.csv"})
|
30 |
>>> dataset
|
31 |
DatasetDict({
|
32 |
train: Dataset({
|
|
|
48 |
- `phase` - relative path to the phase values file
|
49 |
- `time` - relative path to the time values file
|
50 |
|
51 |
+
Mean and standard deviation of magnitudes are stored in `mean_std.csv` file.
|
52 |
+
|
53 |
|
54 |
### File structure
|
55 |
|