Spaces:
Runtime error
Runtime error
Commit
•
77a8008
1
Parent(s):
3e83c57
transformers-upgrade (#687)
Browse files- bumped transformers (ff165a8d495de2c8a23330bcd20d48e96254c039)
- added poetry.lock to gitignore (e4e1364a8f3f9679ca49ebabe2370cb020b793d6)
Co-authored-by: Alina Lozovskaya <[email protected]>
- .gitignore +1 -0
- poetry.lock +0 -0
- pyproject.toml +3 -2
- requirements.txt +1 -1
.gitignore
CHANGED
@@ -10,6 +10,7 @@ __pycache__/
|
|
10 |
.python-version
|
11 |
.profile_app.python
|
12 |
*pstats
|
|
|
13 |
|
14 |
eval-queue/
|
15 |
eval-results/
|
|
|
10 |
.python-version
|
11 |
.profile_app.python
|
12 |
*pstats
|
13 |
+
poetry.lock
|
14 |
|
15 |
eval-queue/
|
16 |
eval-results/
|
poetry.lock
DELETED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
CHANGED
@@ -13,6 +13,7 @@ line_length = 119
|
|
13 |
line-length = 119
|
14 |
|
15 |
[tool.poetry]
|
|
|
16 |
name = "open-llm-leaderboard"
|
17 |
version = "0.1.0"
|
18 |
description = ""
|
@@ -34,9 +35,9 @@ python-dateutil = "2.8.2"
|
|
34 |
requests = "2.28.2"
|
35 |
sentencepiece = "^0.2.0"
|
36 |
tqdm = "4.65.0"
|
37 |
-
transformers = "4.
|
38 |
tokenizers = ">=0.15.0"
|
39 |
-
gradio-space-ci = {git = "https://huggingface.co/spaces/Wauplin/gradio-space-ci", rev = "0.2.
|
40 |
gradio = "4.9.0"
|
41 |
isort = "^5.13.2"
|
42 |
ruff = "^0.3.5"
|
|
|
13 |
line-length = 119
|
14 |
|
15 |
[tool.poetry]
|
16 |
+
package-mode = false
|
17 |
name = "open-llm-leaderboard"
|
18 |
version = "0.1.0"
|
19 |
description = ""
|
|
|
35 |
requests = "2.28.2"
|
36 |
sentencepiece = "^0.2.0"
|
37 |
tqdm = "4.65.0"
|
38 |
+
transformers = "4.40.0"
|
39 |
tokenizers = ">=0.15.0"
|
40 |
+
gradio-space-ci = {git = "https://huggingface.co/spaces/Wauplin/gradio-space-ci", rev = "0.2.3"}
|
41 |
gradio = "4.9.0"
|
42 |
isort = "^5.13.2"
|
43 |
ruff = "^0.3.5"
|
requirements.txt
CHANGED
@@ -11,6 +11,6 @@ python-dateutil==2.8.2
|
|
11 |
requests==2.28.2
|
12 |
sentencepiece
|
13 |
tqdm==4.65.0
|
14 |
-
transformers==4.
|
15 |
tokenizers>=0.15.0
|
16 |
gradio-space-ci @ git+https://huggingface.co/spaces/Wauplin/[email protected] # CI !!!
|
|
|
11 |
requests==2.28.2
|
12 |
sentencepiece
|
13 |
tqdm==4.65.0
|
14 |
+
transformers==4.40.0
|
15 |
tokenizers>=0.15.0
|
16 |
gradio-space-ci @ git+https://huggingface.co/spaces/Wauplin/[email protected] # CI !!!
|