Update app.py
Browse files
app.py
CHANGED
|
@@ -2,10 +2,10 @@ import os
|
|
| 2 |
import sys
|
| 3 |
|
| 4 |
os.system('git clone https://github.com/facebookresearch/av_hubert.git')
|
| 5 |
-
os.chdir(
|
| 6 |
os.system('git submodule init')
|
| 7 |
os.system('git submodule update')
|
| 8 |
-
os.chdir(
|
| 9 |
os.system('pip install ./')
|
| 10 |
os.system('pip install scipy')
|
| 11 |
os.system('pip install sentencepiece')
|
|
@@ -17,7 +17,7 @@ os.system('pip install numpy==1.23.3')
|
|
| 17 |
|
| 18 |
|
| 19 |
# sys.path.append('/home/user/app/av_hubert')
|
| 20 |
-
sys.path.append('
|
| 21 |
|
| 22 |
print(sys.path)
|
| 23 |
print(os.listdir())
|
|
|
|
| 2 |
import sys
|
| 3 |
|
| 4 |
os.system('git clone https://github.com/facebookresearch/av_hubert.git')
|
| 5 |
+
os.chdir('/home/user/app/av_hubert')
|
| 6 |
os.system('git submodule init')
|
| 7 |
os.system('git submodule update')
|
| 8 |
+
os.chdir('/home/user/app/av_hubert/fairseq')
|
| 9 |
os.system('pip install ./')
|
| 10 |
os.system('pip install scipy')
|
| 11 |
os.system('pip install sentencepiece')
|
|
|
|
| 17 |
|
| 18 |
|
| 19 |
# sys.path.append('/home/user/app/av_hubert')
|
| 20 |
+
sys.path.append('/home/user/app/av_hubert/avhubert')
|
| 21 |
|
| 22 |
print(sys.path)
|
| 23 |
print(os.listdir())
|