aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--swr2_asr/train.py4
2 files changed, 6 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 9a3140c..33600ee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -170,4 +170,6 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
-#.idea/ \ No newline at end of file
+#.idea/
+
+data/
diff --git a/swr2_asr/train.py b/swr2_asr/train.py
index cfdef6b..abe0e08 100644
--- a/swr2_asr/train.py
+++ b/swr2_asr/train.py
@@ -7,7 +7,9 @@ from AudioLoader.speech.mls import MultilingualLibriSpeech
def main():
- dataset = MultilingualLibriSpeech("./data", "mls_german_opus", "dev", download=True)
+ dataset = MultilingualLibriSpeech(
+ "data", "mls_polish_opus", split="train", download=True
+ )
print(dataset[1])