From f8557a67fd325c87262697e01b6febbc095fa586 Mon Sep 17 00:00:00 2001 From: troyBORG Date: Fri, 3 Oct 2025 01:04:19 -0500 Subject: [PATCH 1/2] Update README.md Adding missing dependencies that are needed before it will start the training --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a13a0c..632755e 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ uv sync MFA (micromamba) ```bash -micromamba create -n mfa -c conda-forge python=3.12 montreal-forced-aligner +micromamba create -n mfa -c conda-forge python=3.12 montreal-forced-aligner micromamba activate mfa mfa model download acoustic english_us_arpa @@ -24,6 +24,12 @@ mfa model download dictionary english_us_arpa mfa model download g2p english_us_arpa ``` +Other dependencies needed before training: +```bash +pip install torch +micromamba install -c pytorch torchaudio numpy scikit-learn tqdm tensorboard matplotlib +``` + Dataset Download is now integrated in the training script. ```python training/train.py --config training/recipes/tcn_config.toml``` From ce937dc5488626e3b109ccf9e5394d61d0eda009 Mon Sep 17 00:00:00 2001 From: troyBORG Date: Fri, 3 Oct 2025 01:05:44 -0500 Subject: [PATCH 2/2] Update README.md removed extra space --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 632755e..deb2bad 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ uv sync MFA (micromamba) ```bash -micromamba create -n mfa -c conda-forge python=3.12 montreal-forced-aligner +micromamba create -n mfa -c conda-forge python=3.12 montreal-forced-aligner micromamba activate mfa mfa model download acoustic english_us_arpa