Update requirements.txt
Browse files- requirements.txt +10 -9
requirements.txt
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
# Compatible PyTorch and torchaudio
|
2 |
-
torch
|
3 |
-
torchaudio
|
4 |
|
5 |
# pyannote.audio and dependencies
|
6 |
-
pyannote.audio==
|
7 |
-
pyannote.core
|
8 |
numpy>=1.19.0
|
9 |
scipy>=1.5.0
|
10 |
-
librosa>=0.
|
11 |
matplotlib>=3.1.0
|
12 |
|
13 |
-
# SpeechBrain (compatible version)
|
14 |
-
speechbrain==0.
|
15 |
|
16 |
-
# Pytorch Lightning
|
17 |
-
pytorch-lightning>=
|
18 |
|
19 |
# Correct semver version range
|
20 |
semver>=2.10.2,<3.0
|
@@ -23,3 +23,4 @@ semver>=2.10.2,<3.0
|
|
23 |
typing-extensions>=4.0.0
|
24 |
|
25 |
|
|
|
|
1 |
# Compatible PyTorch and torchaudio
|
2 |
+
torch>=1.13.0
|
3 |
+
torchaudio>=1.13.0
|
4 |
|
5 |
# pyannote.audio and dependencies
|
6 |
+
pyannote.audio==3.0.1
|
7 |
+
pyannote.core>=5.0.0
|
8 |
numpy>=1.19.0
|
9 |
scipy>=1.5.0
|
10 |
+
librosa>=0.8.0
|
11 |
matplotlib>=3.1.0
|
12 |
|
13 |
+
# SpeechBrain (latest compatible version)
|
14 |
+
speechbrain==1.0.2
|
15 |
|
16 |
+
# Pytorch Lightning
|
17 |
+
pytorch-lightning>=2.0.0
|
18 |
|
19 |
# Correct semver version range
|
20 |
semver>=2.10.2,<3.0
|
|
|
23 |
typing-extensions>=4.0.0
|
24 |
|
25 |
|
26 |
+
|