From e28c8327baad8af6893c816d127593d1a9ab3609 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 18 Aug 2023 13:09:04 +0200 Subject: Switched to Polish --- swr2_asr/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'swr2_asr/train.py') diff --git a/swr2_asr/train.py b/swr2_asr/train.py index cfdef6b..34b61ad 100644 --- a/swr2_asr/train.py +++ b/swr2_asr/train.py @@ -7,7 +7,7 @@ from AudioLoader.speech.mls import MultilingualLibriSpeech def main(): - dataset = MultilingualLibriSpeech("./data", "mls_german_opus", "dev", download=True) + dataset = MultilingualLibriSpeech("./data", "mls_polish_opus", "dev", download=True) print(dataset[1]) -- cgit v1.2.3 From 6adf8cd1334129c53e672ba584081235b8767b35 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 18 Aug 2023 13:32:27 +0200 Subject: Fixed training (use new fork) --- .gitignore | 4 +++- swr2_asr/train.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'swr2_asr/train.py') diff --git a/.gitignore b/.gitignore index 6bb433f..b62c1db 100644 --- a/.gitignore +++ b/.gitignore @@ -164,4 +164,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 34b61ad..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_polish_opus", "dev", download=True) + dataset = MultilingualLibriSpeech( + "data", "mls_polish_opus", split="train", download=True + ) print(dataset[1]) -- cgit v1.2.3