Spaces:
Build error
Build error
Commit
Β·
33efdd3
1
Parent(s):
1c73856
ffdfdfd
Browse files- .gitignore +6 -1
- Dockerfile +1 -1
- README.md +1 -3
- pyproject.toml +2 -2
- requirements.txt +3 -1
.gitignore
CHANGED
@@ -71,4 +71,9 @@ logs/
|
|
71 |
# Large files
|
72 |
*.dylib
|
73 |
*.js.map
|
74 |
-
*.so
|
|
|
|
|
|
|
|
|
|
|
|
71 |
# Large files
|
72 |
*.dylib
|
73 |
*.js.map
|
74 |
+
*.so
|
75 |
+
|
76 |
+
# Downloaded data and Gradio cache
|
77 |
+
models/
|
78 |
+
vocoder/
|
79 |
+
.gradio/
|
Dockerfile
CHANGED
@@ -32,4 +32,4 @@ WORKDIR /home/user/app
|
|
32 |
EXPOSE 7860
|
33 |
|
34 |
# Comando para rodar o aplicativo
|
35 |
-
CMD ["python", "
|
|
|
32 |
EXPOSE 7860
|
33 |
|
34 |
# Comando para rodar o aplicativo
|
35 |
+
CMD ["python", "app_gradio_spaces.py"]
|
README.md
CHANGED
@@ -3,9 +3,7 @@ title: LLaMA-Omni
|
|
3 |
emoji: π¦π§
|
4 |
colorFrom: indigo
|
5 |
colorTo: purple
|
6 |
-
sdk:
|
7 |
-
sdk_version: 3.50.2
|
8 |
-
app_file: app_gradio_spaces.py
|
9 |
pinned: false
|
10 |
---
|
11 |
|
|
|
3 |
emoji: π¦π§
|
4 |
colorFrom: indigo
|
5 |
colorTo: purple
|
6 |
+
sdk: docker
|
|
|
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
pyproject.toml
CHANGED
@@ -19,12 +19,12 @@ dependencies = [
|
|
19 |
"numpy>=1.24.0",
|
20 |
"transformers>=4.34.0",
|
21 |
"accelerate>=0.21.0",
|
22 |
-
"gradio>=
|
23 |
"fastapi>=0.104.0",
|
24 |
"uvicorn>=0.23.2",
|
25 |
"pydantic>=2.3.0",
|
26 |
"openai-whisper>=0.0.1",
|
27 |
"tqdm>=4.66.1",
|
28 |
"requests>=2.31.0",
|
29 |
-
"fairseq
|
30 |
]
|
|
|
19 |
"numpy>=1.24.0",
|
20 |
"transformers>=4.34.0",
|
21 |
"accelerate>=0.21.0",
|
22 |
+
"gradio>=5.29.0",
|
23 |
"fastapi>=0.104.0",
|
24 |
"uvicorn>=0.23.2",
|
25 |
"pydantic>=2.3.0",
|
26 |
"openai-whisper>=0.0.1",
|
27 |
"tqdm>=4.66.1",
|
28 |
"requests>=2.31.0",
|
29 |
+
"fairseq @ git+https://github.com/pytorch/fairseq.git@ecbf110e1eb43861214b05fa001eff584954f65a",
|
30 |
]
|
requirements.txt
CHANGED
@@ -9,4 +9,6 @@ pydantic>=2.3.0
|
|
9 |
openai-whisper>=0.0.1
|
10 |
tqdm>=4.66.1
|
11 |
requests>=2.31.0
|
12 |
-
git+https://github.com/pytorch/fairseq.git@ecbf110e1eb43861214b05fa001eff584954f65a
|
|
|
|
|
|
9 |
openai-whisper>=0.0.1
|
10 |
tqdm>=4.66.1
|
11 |
requests>=2.31.0
|
12 |
+
git+https://github.com/pytorch/fairseq.git@ecbf110e1eb43861214b05fa001eff584954f65a
|
13 |
+
omegaconf @ git+https://github.com/omry/omegaconf.git@fd9109cff74d05794e14562dcbdde442eb24635d
|
14 |
+
hydra-core==1.0.7
|