Spaces:
Sleeping
Sleeping
Commit
·
40d38a8
1
Parent(s):
1efd0a3
Add onnx library
Browse files- .gitignore +2 -1
- requirements.txt +7 -0
.gitignore
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
__pycache__
|
2 |
-
LLM
|
|
|
|
1 |
__pycache__
|
2 |
+
LLM
|
3 |
+
venv
|
requirements.txt
CHANGED
@@ -4,16 +4,19 @@ certifi==2024.12.14
|
|
4 |
charset-normalizer==3.4.1
|
5 |
click==8.1.8
|
6 |
colorama==0.4.6
|
|
|
7 |
contourpy==1.3.1
|
8 |
cycler==0.12.1
|
9 |
et_xmlfile==2.0.0
|
10 |
exceptiongroup==1.2.2
|
11 |
fastapi==0.115.7
|
12 |
filelock==3.17.0
|
|
|
13 |
fonttools==4.55.7
|
14 |
fsspec==2024.12.0
|
15 |
h11==0.14.0
|
16 |
huggingface-hub==0.28.0
|
|
|
17 |
idna==3.10
|
18 |
Jinja2==3.1.5
|
19 |
joblib==1.4.2
|
@@ -24,13 +27,17 @@ mpmath==1.3.0
|
|
24 |
networkx==3.4.2
|
25 |
nltk==3.9.1
|
26 |
numpy==2.2.2
|
|
|
|
|
27 |
openpyxl==3.1.5
|
28 |
packaging==24.2
|
29 |
pandas==2.2.3
|
30 |
pillow==11.1.0
|
|
|
31 |
pydantic==2.10.6
|
32 |
pydantic_core==2.27.2
|
33 |
pyparsing==3.2.1
|
|
|
34 |
python-crfsuite==0.9.11
|
35 |
python-dateutil==2.9.0.post0
|
36 |
pytz==2024.2
|
|
|
4 |
charset-normalizer==3.4.1
|
5 |
click==8.1.8
|
6 |
colorama==0.4.6
|
7 |
+
coloredlogs==15.0.1
|
8 |
contourpy==1.3.1
|
9 |
cycler==0.12.1
|
10 |
et_xmlfile==2.0.0
|
11 |
exceptiongroup==1.2.2
|
12 |
fastapi==0.115.7
|
13 |
filelock==3.17.0
|
14 |
+
flatbuffers==25.2.10
|
15 |
fonttools==4.55.7
|
16 |
fsspec==2024.12.0
|
17 |
h11==0.14.0
|
18 |
huggingface-hub==0.28.0
|
19 |
+
humanfriendly==10.0
|
20 |
idna==3.10
|
21 |
Jinja2==3.1.5
|
22 |
joblib==1.4.2
|
|
|
27 |
networkx==3.4.2
|
28 |
nltk==3.9.1
|
29 |
numpy==2.2.2
|
30 |
+
onnx
|
31 |
+
onnxruntime
|
32 |
openpyxl==3.1.5
|
33 |
packaging==24.2
|
34 |
pandas==2.2.3
|
35 |
pillow==11.1.0
|
36 |
+
protobuf==3.20.3
|
37 |
pydantic==2.10.6
|
38 |
pydantic_core==2.27.2
|
39 |
pyparsing==3.2.1
|
40 |
+
pyreadline3==3.5.4
|
41 |
python-crfsuite==0.9.11
|
42 |
python-dateutil==2.9.0.post0
|
43 |
pytz==2024.2
|