Update README.md
Browse files
README.md
CHANGED
@@ -84,7 +84,7 @@ To load the dataset using the Hugging Face `datasets` library:
|
|
84 |
from datasets import load_dataset
|
85 |
|
86 |
# Load the default full dataset with seed 42
|
87 |
-
dataset = load_dataset("MeriDK/AstroM3Dataset")
|
88 |
```
|
89 |
|
90 |
The default configuration is **full_42** (entire dataset with seed 42).
|
@@ -94,7 +94,7 @@ To load a specific subset and seed, use {subset}_{seed} as the name:
|
|
94 |
from datasets import load_dataset
|
95 |
|
96 |
# Load the 25% subset sampled using seed 123
|
97 |
-
dataset = load_dataset("MeriDK/AstroM3Dataset", name="sub25_123")
|
98 |
```
|
99 |
|
100 |
---
|
|
|
84 |
from datasets import load_dataset
|
85 |
|
86 |
# Load the default full dataset with seed 42
|
87 |
+
dataset = load_dataset("MeriDK/AstroM3Dataset", trust_remote_code=True)
|
88 |
```
|
89 |
|
90 |
The default configuration is **full_42** (entire dataset with seed 42).
|
|
|
94 |
from datasets import load_dataset
|
95 |
|
96 |
# Load the 25% subset sampled using seed 123
|
97 |
+
dataset = load_dataset("MeriDK/AstroM3Dataset", name="sub25_123", trust_remote_code=True)
|
98 |
```
|
99 |
|
100 |
---
|