Update simulation.py
Browse files- simulation.py +3 -0
simulation.py
CHANGED
@@ -150,6 +150,8 @@ DATA_FILES = {"multiple-666": {"train": "https://huggingface.co/datasets/thewall
|
|
150 |
"test": "https://huggingface.co/datasets/thewall/Simulation/resolve/main/data/multiple-666-test.parquet"},
|
151 |
"paired-666": {"train": "https://huggingface.co/datasets/thewall/Simulation/resolve/main/data/paired-666-train.parquet",
|
152 |
"test": "https://huggingface.co/datasets/thewall/Simulation/resolve/main/data/paired-666-test.parquet"},
|
|
|
|
|
153 |
}
|
154 |
|
155 |
class SimulationConfig(datasets.BuilderConfig):
|
@@ -175,6 +177,7 @@ class Simulation(datasets.GeneratorBasedBuilder):
|
|
175 |
SimulationConfig(name="paired", n_seq=5000, seed=0, paired=True),
|
176 |
SimulationConfig(name="multiple-666", num_motifs=10, error_rate=0.1, n_seq=10000, seed=0),
|
177 |
SimulationConfig(name="paired-666", n_seq=5000, seed=0, paired=True),
|
|
|
178 |
]
|
179 |
|
180 |
DEFAULT_CONFIG_NAME = "multiple-666"
|
|
|
150 |
"test": "https://huggingface.co/datasets/thewall/Simulation/resolve/main/data/multiple-666-test.parquet"},
|
151 |
"paired-666": {"train": "https://huggingface.co/datasets/thewall/Simulation/resolve/main/data/paired-666-train.parquet",
|
152 |
"test": "https://huggingface.co/datasets/thewall/Simulation/resolve/main/data/paired-666-test.parquet"},
|
153 |
+
"paired-42": {"train": "https://huggingface.co/datasets/thewall/Simulation/resolve/main/data/paired-42-train.parquet",
|
154 |
+
"test": "https://huggingface.co/datasets/thewall/Simulation/resolve/main/data/paired-42-test.parquet"},
|
155 |
}
|
156 |
|
157 |
class SimulationConfig(datasets.BuilderConfig):
|
|
|
177 |
SimulationConfig(name="paired", n_seq=5000, seed=0, paired=True),
|
178 |
SimulationConfig(name="multiple-666", num_motifs=10, error_rate=0.1, n_seq=10000, seed=0),
|
179 |
SimulationConfig(name="paired-666", n_seq=5000, seed=0, paired=True),
|
180 |
+
SimulationConfig(name="paired-42", n_seq=10000, seed=0, paired=True),
|
181 |
]
|
182 |
|
183 |
DEFAULT_CONFIG_NAME = "multiple-666"
|