Spaces:
Runtime error
Runtime error
Commit
·
d0c552b
1
Parent(s):
d714ad0
CaesarFrenchLLM first test
Browse files- Dockerfile +1 -1
- requirements.txt +4 -4
Dockerfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
# you will also find guides on how best to write your Dockerfile
|
3 |
|
4 |
-
FROM python:3.
|
5 |
|
6 |
WORKDIR /code
|
7 |
|
|
|
1 |
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
# you will also find guides on how best to write your Dockerfile
|
3 |
|
4 |
+
FROM python:3.9
|
5 |
|
6 |
WORKDIR /code
|
7 |
|
requirements.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
absl-py==1.4.0
|
2 |
-
accelerate
|
3 |
aiofiles==23.2.1
|
4 |
aiohttp==3.8.5
|
5 |
aiosignal==1.3.1
|
@@ -57,7 +57,7 @@ orjson==3.9.5
|
|
57 |
packaging==23.1
|
58 |
pandas==2.1.0
|
59 |
pathtools==0.1.2
|
60 |
-
peft
|
61 |
Pillow==10.0.0
|
62 |
protobuf==4.24.2
|
63 |
psutil==5.9.5
|
@@ -94,12 +94,12 @@ tokenizers==0.13.3
|
|
94 |
toolz==0.12.0
|
95 |
torch==2.0.1
|
96 |
tqdm==4.66.1
|
97 |
-
transformers
|
98 |
typing_extensions==4.7.1
|
99 |
tzdata==2023.3
|
100 |
urllib3==2.0.4
|
101 |
uvicorn==0.23.2
|
102 |
-
vigogne
|
103 |
wandb==0.15.9
|
104 |
websockets==11.0.3
|
105 |
xxhash==3.3.0
|
|
|
1 |
absl-py==1.4.0
|
2 |
+
accelerate @ git+https://github.com/huggingface/accelerate.git@7befe580c2393b0a3d75a8aa75af79b8e57f84a4
|
3 |
aiofiles==23.2.1
|
4 |
aiohttp==3.8.5
|
5 |
aiosignal==1.3.1
|
|
|
57 |
packaging==23.1
|
58 |
pandas==2.1.0
|
59 |
pathtools==0.1.2
|
60 |
+
peft @ git+https://github.com/huggingface/peft.git@0c9354bda98eb7f5348699e23ab752e8dca1e60e
|
61 |
Pillow==10.0.0
|
62 |
protobuf==4.24.2
|
63 |
psutil==5.9.5
|
|
|
94 |
toolz==0.12.0
|
95 |
torch==2.0.1
|
96 |
tqdm==4.66.1
|
97 |
+
transformers @ git+https://github.com/huggingface/transformers.git@3b39b906183ed08d9961908eb73104aeea345d11
|
98 |
typing_extensions==4.7.1
|
99 |
tzdata==2023.3
|
100 |
urllib3==2.0.4
|
101 |
uvicorn==0.23.2
|
102 |
+
vigogne @ git+https://github.com/bofenghuang/vigogne@76e1cd0b35fd4f9e360aecdf7130c998459df0ff
|
103 |
wandb==0.15.9
|
104 |
websockets==11.0.3
|
105 |
xxhash==3.3.0
|