Spaces:
Running
Running
ffreemt
commited on
Commit
·
ca7e997
1
Parent(s):
912e80c
Fix test1 model_s = load_model_s()
Browse files- poetry.lock +16 -1
- pyproject.toml +1 -0
poetry.lock
CHANGED
@@ -1097,6 +1097,21 @@ files = [
|
|
1097 |
{file = "jupyterlab_widgets-1.1.0.tar.gz", hash = "sha256:d5f41bc1713795385f718d44dcba47e1e1473c6289f28a95aa6b2c0782ee372a"},
|
1098 |
]
|
1099 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1100 |
[[package]]
|
1101 |
name = "loguru"
|
1102 |
version = "0.6.0"
|
@@ -3519,4 +3534,4 @@ testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=
|
|
3519 |
[metadata]
|
3520 |
lock-version = "2.0"
|
3521 |
python-versions = "^3.8.3"
|
3522 |
-
content-hash = "
|
|
|
1097 |
{file = "jupyterlab_widgets-1.1.0.tar.gz", hash = "sha256:d5f41bc1713795385f718d44dcba47e1e1473c6289f28a95aa6b2c0782ee372a"},
|
1098 |
]
|
1099 |
|
1100 |
+
[[package]]
|
1101 |
+
name = "loadtext"
|
1102 |
+
version = "0.0.2"
|
1103 |
+
description = "Load a text file to string or list of paragraphs (when splitlines set to True) with blank lines removed"
|
1104 |
+
optional = false
|
1105 |
+
python-versions = ">=3.8"
|
1106 |
+
files = [
|
1107 |
+
{file = "loadtext-0.0.2-py3-none-any.whl", hash = "sha256:a9891938b00d9ea029fae2667b6f2efc504da44fd81212dcbbf4896029a3b8d4"},
|
1108 |
+
{file = "loadtext-0.0.2.tar.gz", hash = "sha256:e90ec95d1ec5d1927a376c67ea1339e398d2ab821e32c7a80f773f487ad0d98d"},
|
1109 |
+
]
|
1110 |
+
|
1111 |
+
[package.dependencies]
|
1112 |
+
charset-normalizer = "*"
|
1113 |
+
loguru = "*"
|
1114 |
+
|
1115 |
[[package]]
|
1116 |
name = "loguru"
|
1117 |
version = "0.6.0"
|
|
|
3534 |
[metadata]
|
3535 |
lock-version = "2.0"
|
3536 |
python-versions = "^3.8.3"
|
3537 |
+
content-hash = "a474c3c9d6499e607ff397a49b50a0ad4c054978068c616e9c61cd57cfba3018"
|
pyproject.toml
CHANGED
@@ -31,6 +31,7 @@ typer = "^0.4.1"
|
|
31 |
XlsxWriter = "^3.0.3"
|
32 |
huggingface-hub = "^0.21.4"
|
33 |
transformers = "^4.38.2"
|
|
|
34 |
|
35 |
[tool.poe.executor]
|
36 |
type = "poetry"
|
|
|
31 |
XlsxWriter = "^3.0.3"
|
32 |
huggingface-hub = "^0.21.4"
|
33 |
transformers = "^4.38.2"
|
34 |
+
loadtext = "^0.0.2"
|
35 |
|
36 |
[tool.poe.executor]
|
37 |
type = "poetry"
|