Spaces:
Runtime error
Runtime error
start_app
Browse files- app.py +1 -1
- requirements.txt +2 -2
app.py
CHANGED
@@ -5,7 +5,7 @@ Credit to Derek Thomas, derek@huggingface.co
|
|
5 |
|
6 |
import subprocess
|
7 |
|
8 |
-
subprocess.run(["pip", "install", "--upgrade", "transformers[torch,sentencepiece]==4.34.1"])
|
9 |
|
10 |
import logging
|
11 |
from pathlib import Path
|
|
|
5 |
|
6 |
import subprocess
|
7 |
|
8 |
+
# subprocess.run(["pip", "install", "--upgrade", "transformers[torch,sentencepiece]==4.34.1"])
|
9 |
|
10 |
import logging
|
11 |
from pathlib import Path
|
requirements.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
|
2 |
wikiextractor==3.0.6
|
3 |
sentence-transformers>2.2.0
|
4 |
ipywidgets==8.1.1
|
5 |
tqdm==4.66.1
|
6 |
aiohttp==3.8.6
|
7 |
huggingface-hub==0.17.3
|
8 |
-
lancedb
|
9 |
openai==0.28
|
|
|
1 |
+
transformers[torch,sentencepiece]
|
2 |
wikiextractor==3.0.6
|
3 |
sentence-transformers>2.2.0
|
4 |
ipywidgets==8.1.1
|
5 |
tqdm==4.66.1
|
6 |
aiohttp==3.8.6
|
7 |
huggingface-hub==0.17.3
|
8 |
+
lancedb
|
9 |
openai==0.28
|