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
+13
View File
@@ -0,0 +1,13 @@
$envName = "notecast"
Write-Output >>> Creating environment $envName from environment.yml"
conda env create -f environment.yml -n $envName
if ($LASTEXITCODE -ne 0) {
Write-Output ">>> Environment already exists, updating..."
conda env update -f environment.yml --prune
}
Write-Output ">>> Activating environment"
conda activate $envName
Write-Output ">>> Download completed!"