MeriDK commited on
Commit
7472353
·
verified ·
1 Parent(s): 8a3e155

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -35,10 +35,10 @@ Each sample consists of:
35
 
36
  - Paper: [AstroM<sup>3</sup>: A self-supervised multimodal model for astronomy](https://arxiv.org/abs/2411.08842)
37
  - Code Repository: [GitHub: AstroM<sup>3</sup>](https://github.com/MeriDK/AstroM3/)
38
- - Processed Data: [MeriDK/AstroM3Processed](https://huggingface.co/datasets/MeriDK/AstroM3Processed/)
39
 
40
  **Note:** The processed dataset `AstroM3Processed` is created from the original dataset `AstroM3Dataset`
41
- by using [preprocess.py](https://huggingface.co/datasets/MeriDK/AstroM3Dataset/blob/main/preprocess.py)
42
 
43
  ---
44
 
@@ -95,7 +95,7 @@ To load the dataset using the Hugging Face `datasets` library:
95
  from datasets import load_dataset
96
 
97
  # Load the default full dataset with seed 42
98
- dataset = load_dataset("MeriDK/AstroM3Dataset", trust_remote_code=True)
99
  ```
100
 
101
  The default configuration is **full_42** (entire dataset with seed 42).
@@ -105,7 +105,7 @@ To load a specific subset and seed, use {subset}_{seed} as the name:
105
  from datasets import load_dataset
106
 
107
  # Load the 25% subset sampled using seed 123
108
- dataset = load_dataset("MeriDK/AstroM3Dataset", name="sub25_123", trust_remote_code=True)
109
  ```
110
 
111
  ---
 
35
 
36
  - Paper: [AstroM<sup>3</sup>: A self-supervised multimodal model for astronomy](https://arxiv.org/abs/2411.08842)
37
  - Code Repository: [GitHub: AstroM<sup>3</sup>](https://github.com/MeriDK/AstroM3/)
38
+ - Processed Data: [AstroMLCore/AstroM3Processed](https://huggingface.co/datasets/AstroMLCore/AstroM3Processed/)
39
 
40
  **Note:** The processed dataset `AstroM3Processed` is created from the original dataset `AstroM3Dataset`
41
+ by using [preprocess.py](https://huggingface.co/datasets/AstroMLCore/AstroM3Dataset/blob/main/preprocess.py)
42
 
43
  ---
44
 
 
95
  from datasets import load_dataset
96
 
97
  # Load the default full dataset with seed 42
98
+ dataset = load_dataset("AstroMLCore/AstroM3Dataset", trust_remote_code=True)
99
  ```
100
 
101
  The default configuration is **full_42** (entire dataset with seed 42).
 
105
  from datasets import load_dataset
106
 
107
  # Load the 25% subset sampled using seed 123
108
+ dataset = load_dataset("AstroMLCore/AstroM3Dataset", name="sub25_123", trust_remote_code=True)
109
  ```
110
 
111
  ---