From 053c6b8d3f29651a467ef41966483ba09be6a717 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 2 Jul 2023 14:20:24 +0200 Subject: Initial commit --- train.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 train.py (limited to 'train.py') diff --git a/train.py b/train.py new file mode 100644 index 0000000..ebeb4d4 --- /dev/null +++ b/train.py @@ -0,0 +1,11 @@ +#!/bin/env python3 + +import torchaudio + +# download the datasets +train_dataset = torchaudio.datasets.LIBRISPEECH( + "./data", url="train-clean-100", download=True +) +test_dataset = torchaudio.datasets.LIBRISPEECH( + "./data", url="test-clean", download=True +) -- cgit v1.2.3