Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
text-generation-inference
Commits
10d9083b
Unverified
Commit
10d9083b
authored
Apr 11, 2024
by
abhishek thakur
Committed by
GitHub
Apr 11, 2024
Browse files
Update libraries (#1713)
Co-authored-by:
Nicolas Patry
<
patry.nicolas@protonmail.com
>
parent
30620a9a
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
165 additions
and
164 deletions
+165
-164
server/poetry.lock
server/poetry.lock
+152
-151
server/pyproject.toml
server/pyproject.toml
+3
-3
server/requirements_cuda.txt
server/requirements_cuda.txt
+5
-5
server/requirements_rocm.txt
server/requirements_rocm.txt
+5
-5
No files found.
server/poetry.lock
View file @
10d9083b
This diff is collapsed.
Click to expand it.
server/pyproject.toml
View file @
10d9083b
...
...
@@ -15,7 +15,7 @@ grpcio-status = "^1.51.1"
grpcio-reflection
=
"^1.51.1"
grpc-interceptor
=
"^0.15.0"
typer
=
"^0.6.1"
accelerate
=
{
version
=
"^0.2
8.0
"
,
optional
=
true
}
accelerate
=
{
version
=
"^0.2
9.1
"
,
optional
=
true
}
bitsandbytes
=
{
version
=
"^0.43.0"
,
optional
=
true
}
safetensors
=
"^0.4"
loguru
=
"^0.6.0"
...
...
@@ -26,11 +26,11 @@ hf-transfer = "^0.1.2"
sentencepiece
=
"^0.1.97"
tokenizers
=
"^0.15.0"
huggingface-hub
=
"^0.19.3"
transformers
=
"^4.3
8
"
transformers
=
"^4.3
9
"
einops
=
"^0.6.1"
texttable
=
{
version
=
"^1.6.7"
,
optional
=
true
}
datasets
=
{
version
=
"^2.14.0"
,
optional
=
true
}
peft
=
{
version
=
"^0.
9
"
,
optional
=
true
}
peft
=
{
version
=
"^0.
10
"
,
optional
=
true
}
torch
=
{
version
=
"^2.1.1"
,
optional
=
true
}
scipy
=
"^1.11.1"
pillow
=
"^10.0.0"
...
...
server/requirements_cuda.txt
View file @
10d9083b
...
...
@@ -5,7 +5,7 @@ click==8.1.7 ; python_version >= "3.9" and python_version < "3.13"
colorama==0.4.6 ; python_version >= "3.9" and python_version < "3.13" and (sys_platform == "win32" or platform_system == "Windows")
deprecated==1.2.14 ; python_version >= "3.9" and python_version < "3.13"
einops==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
filelock==3.13.
1
; python_version >= "3.9" and python_version < "3.13"
filelock==3.13.
3
; python_version >= "3.9" and python_version < "3.13"
fsspec==2024.2.0 ; python_version >= "3.9" and python_version < "3.13"
googleapis-common-protos==1.63.0 ; python_version >= "3.9" and python_version < "3.13"
grpc-interceptor==0.15.4 ; python_version >= "3.9" and python_version < "3.13"
...
...
@@ -27,20 +27,20 @@ opentelemetry-proto==1.15.0 ; python_version >= "3.9" and python_version < "3.13
opentelemetry-sdk==1.15.0 ; python_version >= "3.9" and python_version < "3.13"
opentelemetry-semantic-conventions==0.36b0 ; python_version >= "3.9" and python_version < "3.13"
packaging==24.0 ; python_version >= "3.9" and python_version < "3.13"
pillow==10.
2
.0 ; python_version >= "3.9" and python_version < "3.13"
pillow==10.
3
.0 ; python_version >= "3.9" and python_version < "3.13"
protobuf==4.25.3 ; python_version >= "3.9" and python_version < "3.13"
pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "3.13"
regex==2023.12.25 ; python_version >= "3.9" and python_version < "3.13"
requests==2.31.0 ; python_version >= "3.9" and python_version < "3.13"
safetensors==0.4.2 ; python_version >= "3.9" and python_version < "3.13"
scipy==1.1
2
.0 ; python_version >= "3.9" and python_version < "3.13"
scipy==1.1
3
.0 ; python_version >= "3.9" and python_version < "3.13"
sentencepiece==0.1.99 ; python_version >= "3.9" and python_version < "3.13"
setuptools==69.2.0 ; python_version >= "3.9" and python_version < "3.13"
tokenizers==0.15.2 ; python_version >= "3.9" and python_version < "3.13"
tqdm==4.66.2 ; python_version >= "3.9" and python_version < "3.13"
transformers==4.39.
0
; python_version >= "3.9" and python_version < "3.13"
transformers==4.39.
3
; python_version >= "3.9" and python_version < "3.13"
typer==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
typing-extensions==4.1
0
.0 ; python_version >= "3.9" and python_version < "3.13"
typing-extensions==4.1
1
.0 ; python_version >= "3.9" and python_version < "3.13"
urllib3==2.2.1 ; python_version >= "3.9" and python_version < "3.13"
win32-setctime==1.1.0 ; python_version >= "3.9" and python_version < "3.13" and sys_platform == "win32"
wrapt==1.16.0 ; python_version >= "3.9" and python_version < "3.13"
server/requirements_rocm.txt
View file @
10d9083b
...
...
@@ -5,7 +5,7 @@ click==8.1.7 ; python_version >= "3.9" and python_version < "3.13"
colorama==0.4.6 ; python_version >= "3.9" and python_version < "3.13" and (sys_platform == "win32" or platform_system == "Windows")
deprecated==1.2.14 ; python_version >= "3.9" and python_version < "3.13"
einops==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
filelock==3.13.
1
; python_version >= "3.9" and python_version < "3.13"
filelock==3.13.
3
; python_version >= "3.9" and python_version < "3.13"
fsspec==2024.2.0 ; python_version >= "3.9" and python_version < "3.13"
googleapis-common-protos==1.63.0 ; python_version >= "3.9" and python_version < "3.13"
grpc-interceptor==0.15.4 ; python_version >= "3.9" and python_version < "3.13"
...
...
@@ -27,20 +27,20 @@ opentelemetry-proto==1.15.0 ; python_version >= "3.9" and python_version < "3.13
opentelemetry-sdk==1.15.0 ; python_version >= "3.9" and python_version < "3.13"
opentelemetry-semantic-conventions==0.36b0 ; python_version >= "3.9" and python_version < "3.13"
packaging==24.0 ; python_version >= "3.9" and python_version < "3.13"
pillow==10.
2
.0 ; python_version >= "3.9" and python_version < "3.13"
pillow==10.
3
.0 ; python_version >= "3.9" and python_version < "3.13"
protobuf==4.25.3 ; python_version >= "3.9" and python_version < "3.13"
pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "3.13"
regex==2023.12.25 ; python_version >= "3.9" and python_version < "3.13"
requests==2.31.0 ; python_version >= "3.9" and python_version < "3.13"
safetensors==0.4.2 ; python_version >= "3.9" and python_version < "3.13"
scipy==1.1
2
.0 ; python_version >= "3.9" and python_version < "3.13"
scipy==1.1
3
.0 ; python_version >= "3.9" and python_version < "3.13"
sentencepiece==0.1.99 ; python_version >= "3.9" and python_version < "3.13"
setuptools==69.2.0 ; python_version >= "3.9" and python_version < "3.13"
tokenizers==0.15.2 ; python_version >= "3.9" and python_version < "3.13"
tqdm==4.66.2 ; python_version >= "3.9" and python_version < "3.13"
transformers==4.39.
0
; python_version >= "3.9" and python_version < "3.13"
transformers==4.39.
3
; python_version >= "3.9" and python_version < "3.13"
typer==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
typing-extensions==4.1
0
.0 ; python_version >= "3.9" and python_version < "3.13"
typing-extensions==4.1
1
.0 ; python_version >= "3.9" and python_version < "3.13"
urllib3==2.2.1 ; python_version >= "3.9" and python_version < "3.13"
win32-setctime==1.1.0 ; python_version >= "3.9" and python_version < "3.13" and sys_platform == "win32"
wrapt==1.16.0 ; python_version >= "3.9" and python_version < "3.13"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment