Minor update

- added transcription folder with checker and transcription modules
- logger is a separated module now
This commit is contained in:
2025-09-06 23:36:33 +03:00
parent 6b05918895
commit ecbbbfd5d1
9 changed files with 437 additions and 139 deletions
+10 -5
View File
@@ -1,8 +1,13 @@
# python -m venv .venv
#!/bin/bash
set -e
# pip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu128
ENV_NAME="notecast"
conda init -c speech-to-conspect
echo ">>> Creating environment $ENV_NAME from environment.yml"
conda env create -f environment.yml || conda env update -f environment.yml --prune
conda install pytorch torchvision torchaudio -c pytorch -c nvidia
conda install accelerate transformers ffmpeg -c conda-forge
echo ">>> Activating environment"
eval "$(conda shell.bash hook)"
conda activate "$ENV_NAME"
echo ">>> Download completed!"