Spaces:
Sleeping
Sleeping
Kevin King
commited on
Commit
·
8655886
1
Parent(s):
3979f7c
Pin all major dependencies to stable versions
Browse files- requirements.txt +16 -14
requirements.txt
CHANGED
|
@@ -1,22 +1,24 @@
|
|
| 1 |
--extra-index-url https://download.pytorch.org/whl/cpu
|
| 2 |
|
| 3 |
-
#
|
| 4 |
-
streamlit
|
| 5 |
-
streamlit-webrtc
|
| 6 |
-
|
| 7 |
-
numpy
|
| 8 |
-
streamlit-autorefresh
|
| 9 |
|
| 10 |
-
# Pin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
tensorflow-cpu==2.16.1
|
| 12 |
tf-keras==2.16.0
|
| 13 |
-
deepface
|
| 14 |
-
transformers
|
| 15 |
torch==2.7.0
|
| 16 |
torchaudio==2.7.0
|
| 17 |
-
openai-whisper==20231117
|
| 18 |
|
| 19 |
-
#
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
| 1 |
--extra-index-url https://download.pytorch.org/whl/cpu
|
| 2 |
|
| 3 |
+
# Pin the main UI components to recent, stable versions
|
| 4 |
+
streamlit==1.35.0
|
| 5 |
+
streamlit-webrtc==0.47.0
|
| 6 |
+
streamlit-autorefresh==1.0.1
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
# Pin ML/AI libraries to modern, known-good versions
|
| 9 |
+
transformers==4.40.1
|
| 10 |
+
deepface==0.0.94
|
| 11 |
+
openai-whisper==20231117
|
| 12 |
+
|
| 13 |
+
# Pin frameworks to ensure CPU versions and prevent build timeouts
|
| 14 |
tensorflow-cpu==2.16.1
|
| 15 |
tf-keras==2.16.0
|
|
|
|
|
|
|
| 16 |
torch==2.7.0
|
| 17 |
torchaudio==2.7.0
|
|
|
|
| 18 |
|
| 19 |
+
# Pin data/audio libraries for stability
|
| 20 |
+
pandas==2.2.2
|
| 21 |
+
numpy==1.26.4
|
| 22 |
+
soundfile==0.12.1
|
| 23 |
+
librosa==0.10.1
|
| 24 |
+
scipy==1.13.0
|