-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenvironment.yaml
More file actions
36 lines (33 loc) · 1.13 KB
/
Copy pathenvironment.yaml
File metadata and controls
36 lines (33 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: whisper_env
channels:
- conda-forge
- pytorch
- defaults
dependencies:
# ── base python ─────────────────────────────
- python=3.11
- numpy<2 # PyTorch 2.2 aún no es compatible con NumPy 2
- tqdm
- soundfile # backend de torchaudio
- ffmpeg # binario ffmpeg
- sentencepiece
# ── PyTorch CPU (cambia a bloque CUDA más abajo si tienes GPU) ──
- pytorch=2.2 # versión probada
- torchvision
- torchaudio
- cpuonly
# Si tienes GPU NVIDIA >= Ampere, comenta las 4 líneas anteriores
# y descomenta las dos siguientes:
# - pytorch=2.2
# - torchvision
# - torchaudio
# - pytorch-cuda=12.1 # canal nvidia
# ── pip packages ────────────────────────────
- pip
- pip:
- faster-whisper>=1.0 # motor de transcripción (CTranslate2)
- pyannote.audio==3.3.2
- ffmpeg-python
- huggingface_hub
- torchmetrics # requerido indirectamente por pyannote 3.x
- tkinterdnd2 # arrastrar y soltar en la GUI (opcional)