Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1093,10 +1093,10 @@ Each sample consists of:
|
|
| 1093 |
|
| 1094 |
- Paper: [AstroM<sup>3</sup>: A self-supervised multimodal model for astronomy](https://arxiv.org/abs/2411.08842)
|
| 1095 |
- Code Repository: [GitHub: AstroM<sup>3</sup>](https://github.com/MeriDK/AstroM3/)
|
| 1096 |
-
- Original Data: [
|
| 1097 |
|
| 1098 |
**Note:** The processed dataset `AstroM3Processed` is created from the original dataset `AstroM3Dataset`
|
| 1099 |
-
by using [preprocess.py](https://huggingface.co/datasets/
|
| 1100 |
|
| 1101 |
## Subsets and Seeds
|
| 1102 |
AstroM3Dataset is available in different subset sizes:
|
|
@@ -1118,10 +1118,10 @@ To load the dataset using the Hugging Face `datasets` library, specify the name
|
|
| 1118 |
from datasets import load_dataset
|
| 1119 |
|
| 1120 |
# Load the full dataset with seed 42
|
| 1121 |
-
dataset = load_dataset("
|
| 1122 |
|
| 1123 |
# Load the 25% subset sampled using seed 123
|
| 1124 |
-
dataset = load_dataset("
|
| 1125 |
```
|
| 1126 |
|
| 1127 |
---
|
|
|
|
| 1093 |
|
| 1094 |
- Paper: [AstroM<sup>3</sup>: A self-supervised multimodal model for astronomy](https://arxiv.org/abs/2411.08842)
|
| 1095 |
- Code Repository: [GitHub: AstroM<sup>3</sup>](https://github.com/MeriDK/AstroM3/)
|
| 1096 |
+
- Original Data: [AstroMLCore/AstroM3Dataset](https://huggingface.co/datasets/AstroMLCore/AstroM3Dataset/)
|
| 1097 |
|
| 1098 |
**Note:** The processed dataset `AstroM3Processed` is created from the original dataset `AstroM3Dataset`
|
| 1099 |
+
by using [preprocess.py](https://huggingface.co/datasets/AstroMLCore/AstroM3Dataset/blob/main/preprocess.py)
|
| 1100 |
|
| 1101 |
## Subsets and Seeds
|
| 1102 |
AstroM3Dataset is available in different subset sizes:
|
|
|
|
| 1118 |
from datasets import load_dataset
|
| 1119 |
|
| 1120 |
# Load the full dataset with seed 42
|
| 1121 |
+
dataset = load_dataset("AstroMLCore/AstroM3Processed", name="full_42")
|
| 1122 |
|
| 1123 |
# Load the 25% subset sampled using seed 123
|
| 1124 |
+
dataset = load_dataset("AstroMLCore/AstroM3Processed", name="sub25_123")
|
| 1125 |
```
|
| 1126 |
|
| 1127 |
---
|