14 lines
486 B
Bash
14 lines
486 B
Bash
# HuggingFace token (обязателен для pyannote)
|
||
# Получить: https://huggingface.co/settings/tokens
|
||
# Принять условия:
|
||
# https://huggingface.co/pyannote/segmentation-3.0
|
||
# https://huggingface.co/pyannote/speaker-diarization-3.1
|
||
HF_TOKEN=hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||
|
||
# Whisper settings
|
||
WHISPER_MODEL=large-v3
|
||
WHISPER_BATCH_SIZE=16
|
||
|
||
# Pyannote device: cpu (рекомендуется) или cuda (нужен PyTorch с CUDA)
|
||
PYANNOTE_DEVICE=cuda
|