lyangas
commited on
Commit
•
2e06513
1
Parent(s):
9638727
torch version
Browse files- poetry.lock +195 -19
- pyproject.toml +7 -1
poetry.lock
CHANGED
@@ -251,6 +251,20 @@ files = [
|
|
251 |
{file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"},
|
252 |
]
|
253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
[[package]]
|
255 |
name = "itsdangerous"
|
256 |
version = "2.1.2"
|
@@ -359,6 +373,24 @@ files = [
|
|
359 |
{file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"},
|
360 |
]
|
361 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
[[package]]
|
363 |
name = "mpmath"
|
364 |
version = "1.3.0"
|
@@ -378,21 +410,21 @@ tests = ["pytest (>=4.6)"]
|
|
378 |
|
379 |
[[package]]
|
380 |
name = "networkx"
|
381 |
-
version = "3.1"
|
382 |
description = "Python package for creating and manipulating graphs and networks"
|
383 |
optional = false
|
384 |
-
python-versions = ">=3.
|
385 |
files = [
|
386 |
-
{file = "networkx-3.1-py3-none-any.whl", hash = "sha256:
|
387 |
-
{file = "networkx-3.1.tar.gz", hash = "sha256:
|
388 |
]
|
389 |
|
390 |
[package.extras]
|
391 |
-
default = ["matplotlib (>=3.
|
392 |
-
developer = ["mypy (>=1.1)", "pre-commit (>=3.2)"]
|
393 |
-
doc = ["nb2plots (>=0.
|
394 |
-
extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.
|
395 |
-
test = ["
|
396 |
|
397 |
[[package]]
|
398 |
name = "numpy"
|
@@ -522,6 +554,92 @@ sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-d
|
|
522 |
test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"]
|
523 |
xml = ["lxml (>=4.9.2)"]
|
524 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
[[package]]
|
526 |
name = "python-dateutil"
|
527 |
version = "2.9.0.post0"
|
@@ -822,17 +940,30 @@ files = [
|
|
822 |
|
823 |
[[package]]
|
824 |
name = "sympy"
|
825 |
-
version = "1.12"
|
826 |
description = "Computer algebra system (CAS) in Python"
|
827 |
optional = false
|
828 |
python-versions = ">=3.8"
|
829 |
files = [
|
830 |
-
{file = "sympy-1.12-py3-none-any.whl", hash = "sha256:
|
831 |
-
{file = "sympy-1.12.tar.gz", hash = "sha256:
|
832 |
]
|
833 |
|
834 |
[package.dependencies]
|
835 |
-
mpmath = ">=0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
|
837 |
[[package]]
|
838 |
name = "threadpoolctl"
|
@@ -901,27 +1032,72 @@ testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests"]
|
|
901 |
|
902 |
[[package]]
|
903 |
name = "torch"
|
904 |
-
version = "2.
|
905 |
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
|
906 |
optional = false
|
907 |
python-versions = ">=3.8.0"
|
908 |
files = [
|
909 |
-
{file = "torch-2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
910 |
]
|
911 |
|
912 |
[package.dependencies]
|
913 |
filelock = "*"
|
|
|
914 |
jinja2 = "*"
|
|
|
915 |
networkx = "*"
|
916 |
sympy = "*"
|
917 |
-
typing-extensions = "
|
918 |
|
919 |
[package.extras]
|
920 |
opt-einsum = ["opt-einsum (>=3.3)"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
921 |
|
922 |
[package.source]
|
923 |
-
type = "
|
924 |
-
url = "https://download.pytorch.org/whl/cpu
|
|
|
925 |
|
926 |
[[package]]
|
927 |
name = "tqdm"
|
@@ -1097,4 +1273,4 @@ scikit-learn = ["scikit-learn"]
|
|
1097 |
[metadata]
|
1098 |
lock-version = "2.0"
|
1099 |
python-versions = "^3.9"
|
1100 |
-
content-hash = "
|
|
|
251 |
{file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"},
|
252 |
]
|
253 |
|
254 |
+
[[package]]
|
255 |
+
name = "intel-openmp"
|
256 |
+
version = "2021.4.0"
|
257 |
+
description = "Intel OpenMP* Runtime Library"
|
258 |
+
optional = false
|
259 |
+
python-versions = "*"
|
260 |
+
files = [
|
261 |
+
{file = "intel_openmp-2021.4.0-py2.py3-none-macosx_10_15_x86_64.macosx_11_0_x86_64.whl", hash = "sha256:41c01e266a7fdb631a7609191709322da2bbf24b252ba763f125dd651bcc7675"},
|
262 |
+
{file = "intel_openmp-2021.4.0-py2.py3-none-manylinux1_i686.whl", hash = "sha256:3b921236a38384e2016f0f3d65af6732cf2c12918087128a9163225451e776f2"},
|
263 |
+
{file = "intel_openmp-2021.4.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:e2240ab8d01472fed04f3544a878cda5da16c26232b7ea1b59132dbfb48b186e"},
|
264 |
+
{file = "intel_openmp-2021.4.0-py2.py3-none-win32.whl", hash = "sha256:6e863d8fd3d7e8ef389d52cf97a50fe2afe1a19247e8c0d168ce021546f96fc9"},
|
265 |
+
{file = "intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl", hash = "sha256:eef4c8bcc8acefd7f5cd3b9384dbf73d59e2c99fc56545712ded913f43c4a94f"},
|
266 |
+
]
|
267 |
+
|
268 |
[[package]]
|
269 |
name = "itsdangerous"
|
270 |
version = "2.1.2"
|
|
|
373 |
{file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"},
|
374 |
]
|
375 |
|
376 |
+
[[package]]
|
377 |
+
name = "mkl"
|
378 |
+
version = "2021.4.0"
|
379 |
+
description = "Intel® oneAPI Math Kernel Library"
|
380 |
+
optional = false
|
381 |
+
python-versions = "*"
|
382 |
+
files = [
|
383 |
+
{file = "mkl-2021.4.0-py2.py3-none-macosx_10_15_x86_64.macosx_11_0_x86_64.whl", hash = "sha256:67460f5cd7e30e405b54d70d1ed3ca78118370b65f7327d495e9c8847705e2fb"},
|
384 |
+
{file = "mkl-2021.4.0-py2.py3-none-manylinux1_i686.whl", hash = "sha256:636d07d90e68ccc9630c654d47ce9fdeb036bb46e2b193b3a9ac8cfea683cce5"},
|
385 |
+
{file = "mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb"},
|
386 |
+
{file = "mkl-2021.4.0-py2.py3-none-win32.whl", hash = "sha256:439c640b269a5668134e3dcbcea4350459c4a8bc46469669b2d67e07e3d330e8"},
|
387 |
+
{file = "mkl-2021.4.0-py2.py3-none-win_amd64.whl", hash = "sha256:ceef3cafce4c009dd25f65d7ad0d833a0fbadc3d8903991ec92351fe5de1e718"},
|
388 |
+
]
|
389 |
+
|
390 |
+
[package.dependencies]
|
391 |
+
intel-openmp = "==2021.*"
|
392 |
+
tbb = "==2021.*"
|
393 |
+
|
394 |
[[package]]
|
395 |
name = "mpmath"
|
396 |
version = "1.3.0"
|
|
|
410 |
|
411 |
[[package]]
|
412 |
name = "networkx"
|
413 |
+
version = "3.2.1"
|
414 |
description = "Python package for creating and manipulating graphs and networks"
|
415 |
optional = false
|
416 |
+
python-versions = ">=3.9"
|
417 |
files = [
|
418 |
+
{file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"},
|
419 |
+
{file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"},
|
420 |
]
|
421 |
|
422 |
[package.extras]
|
423 |
+
default = ["matplotlib (>=3.5)", "numpy (>=1.22)", "pandas (>=1.4)", "scipy (>=1.9,!=1.11.0,!=1.11.1)"]
|
424 |
+
developer = ["changelist (==0.4)", "mypy (>=1.1)", "pre-commit (>=3.2)", "rtoml"]
|
425 |
+
doc = ["nb2plots (>=0.7)", "nbconvert (<7.9)", "numpydoc (>=1.6)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.14)", "sphinx (>=7)", "sphinx-gallery (>=0.14)", "texext (>=0.6.7)"]
|
426 |
+
extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.11)", "sympy (>=1.10)"]
|
427 |
+
test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"]
|
428 |
|
429 |
[[package]]
|
430 |
name = "numpy"
|
|
|
554 |
test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"]
|
555 |
xml = ["lxml (>=4.9.2)"]
|
556 |
|
557 |
+
[[package]]
|
558 |
+
name = "pillow"
|
559 |
+
version = "10.3.0"
|
560 |
+
description = "Python Imaging Library (Fork)"
|
561 |
+
optional = false
|
562 |
+
python-versions = ">=3.8"
|
563 |
+
files = [
|
564 |
+
{file = "pillow-10.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45"},
|
565 |
+
{file = "pillow-10.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c"},
|
566 |
+
{file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf"},
|
567 |
+
{file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599"},
|
568 |
+
{file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475"},
|
569 |
+
{file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf"},
|
570 |
+
{file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3"},
|
571 |
+
{file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5"},
|
572 |
+
{file = "pillow-10.3.0-cp310-cp310-win32.whl", hash = "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2"},
|
573 |
+
{file = "pillow-10.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f"},
|
574 |
+
{file = "pillow-10.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b"},
|
575 |
+
{file = "pillow-10.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795"},
|
576 |
+
{file = "pillow-10.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57"},
|
577 |
+
{file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27"},
|
578 |
+
{file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994"},
|
579 |
+
{file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451"},
|
580 |
+
{file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd"},
|
581 |
+
{file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad"},
|
582 |
+
{file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c"},
|
583 |
+
{file = "pillow-10.3.0-cp311-cp311-win32.whl", hash = "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09"},
|
584 |
+
{file = "pillow-10.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d"},
|
585 |
+
{file = "pillow-10.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f"},
|
586 |
+
{file = "pillow-10.3.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84"},
|
587 |
+
{file = "pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19"},
|
588 |
+
{file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338"},
|
589 |
+
{file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1"},
|
590 |
+
{file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462"},
|
591 |
+
{file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a"},
|
592 |
+
{file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef"},
|
593 |
+
{file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3"},
|
594 |
+
{file = "pillow-10.3.0-cp312-cp312-win32.whl", hash = "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d"},
|
595 |
+
{file = "pillow-10.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b"},
|
596 |
+
{file = "pillow-10.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a"},
|
597 |
+
{file = "pillow-10.3.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b"},
|
598 |
+
{file = "pillow-10.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2"},
|
599 |
+
{file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa"},
|
600 |
+
{file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383"},
|
601 |
+
{file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d"},
|
602 |
+
{file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd"},
|
603 |
+
{file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d"},
|
604 |
+
{file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3"},
|
605 |
+
{file = "pillow-10.3.0-cp38-cp38-win32.whl", hash = "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b"},
|
606 |
+
{file = "pillow-10.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999"},
|
607 |
+
{file = "pillow-10.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936"},
|
608 |
+
{file = "pillow-10.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002"},
|
609 |
+
{file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60"},
|
610 |
+
{file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375"},
|
611 |
+
{file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57"},
|
612 |
+
{file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8"},
|
613 |
+
{file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9"},
|
614 |
+
{file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb"},
|
615 |
+
{file = "pillow-10.3.0-cp39-cp39-win32.whl", hash = "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572"},
|
616 |
+
{file = "pillow-10.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb"},
|
617 |
+
{file = "pillow-10.3.0-cp39-cp39-win_arm64.whl", hash = "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f"},
|
618 |
+
{file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355"},
|
619 |
+
{file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9"},
|
620 |
+
{file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2"},
|
621 |
+
{file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463"},
|
622 |
+
{file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced"},
|
623 |
+
{file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3"},
|
624 |
+
{file = "pillow-10.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170"},
|
625 |
+
{file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32"},
|
626 |
+
{file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828"},
|
627 |
+
{file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f"},
|
628 |
+
{file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015"},
|
629 |
+
{file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5"},
|
630 |
+
{file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a"},
|
631 |
+
{file = "pillow-10.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591"},
|
632 |
+
{file = "pillow-10.3.0.tar.gz", hash = "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d"},
|
633 |
+
]
|
634 |
+
|
635 |
+
[package.extras]
|
636 |
+
docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"]
|
637 |
+
fpx = ["olefile"]
|
638 |
+
mic = ["olefile"]
|
639 |
+
tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"]
|
640 |
+
typing = ["typing-extensions"]
|
641 |
+
xmp = ["defusedxml"]
|
642 |
+
|
643 |
[[package]]
|
644 |
name = "python-dateutil"
|
645 |
version = "2.9.0.post0"
|
|
|
940 |
|
941 |
[[package]]
|
942 |
name = "sympy"
|
943 |
+
version = "1.12.1"
|
944 |
description = "Computer algebra system (CAS) in Python"
|
945 |
optional = false
|
946 |
python-versions = ">=3.8"
|
947 |
files = [
|
948 |
+
{file = "sympy-1.12.1-py3-none-any.whl", hash = "sha256:9b2cbc7f1a640289430e13d2a56f02f867a1da0190f2f99d8968c2f74da0e515"},
|
949 |
+
{file = "sympy-1.12.1.tar.gz", hash = "sha256:2877b03f998cd8c08f07cd0de5b767119cd3ef40d09f41c30d722f6686b0fb88"},
|
950 |
]
|
951 |
|
952 |
[package.dependencies]
|
953 |
+
mpmath = ">=1.1.0,<1.4.0"
|
954 |
+
|
955 |
+
[[package]]
|
956 |
+
name = "tbb"
|
957 |
+
version = "2021.13.0"
|
958 |
+
description = "Intel® oneAPI Threading Building Blocks (oneTBB)"
|
959 |
+
optional = false
|
960 |
+
python-versions = "*"
|
961 |
+
files = [
|
962 |
+
{file = "tbb-2021.13.0-py2.py3-none-manylinux1_i686.whl", hash = "sha256:a2567725329639519d46d92a2634cf61e76601dac2f777a05686fea546c4fe4f"},
|
963 |
+
{file = "tbb-2021.13.0-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:aaf667e92849adb012b8874d6393282afc318aca4407fc62f912ee30a22da46a"},
|
964 |
+
{file = "tbb-2021.13.0-py3-none-win32.whl", hash = "sha256:6669d26703e9943f6164c6407bd4a237a45007e79b8d3832fe6999576eaaa9ef"},
|
965 |
+
{file = "tbb-2021.13.0-py3-none-win_amd64.whl", hash = "sha256:3528a53e4bbe64b07a6112b4c5a00ff3c61924ee46c9c68e004a1ac7ad1f09c3"},
|
966 |
+
]
|
967 |
|
968 |
[[package]]
|
969 |
name = "threadpoolctl"
|
|
|
1032 |
|
1033 |
[[package]]
|
1034 |
name = "torch"
|
1035 |
+
version = "2.3.1+cpu"
|
1036 |
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
|
1037 |
optional = false
|
1038 |
python-versions = ">=3.8.0"
|
1039 |
files = [
|
1040 |
+
{file = "torch-2.3.1+cpu-cp310-cp310-linux_x86_64.whl", hash = "sha256:d679e21d871982b9234444331a26350902cfd2d5ca44ce6f49896af8b3a3087d"},
|
1041 |
+
{file = "torch-2.3.1+cpu-cp310-cp310-win_amd64.whl", hash = "sha256:500bf790afc2fd374a15d06213242e517afccc50a46ea5955d321a9a68003335"},
|
1042 |
+
{file = "torch-2.3.1+cpu-cp311-cp311-linux_x86_64.whl", hash = "sha256:a272defe305dbd944aa28a91cc3db0f0149495b3ebec2e39723a7224fa05dc57"},
|
1043 |
+
{file = "torch-2.3.1+cpu-cp311-cp311-win_amd64.whl", hash = "sha256:d2965eb54d3c8818e2280a54bd53e8246a6bb34e4b10bd19c59f35b611dd9f05"},
|
1044 |
+
{file = "torch-2.3.1+cpu-cp312-cp312-linux_x86_64.whl", hash = "sha256:2141a6cb7021adf2f92a0fd372cfeac524ba460bd39ce3a641d30a561e41f69a"},
|
1045 |
+
{file = "torch-2.3.1+cpu-cp312-cp312-win_amd64.whl", hash = "sha256:6acdca2530462611095c44fd95af75ecd5b9646eac813452fe0adf31a9bc310a"},
|
1046 |
+
{file = "torch-2.3.1+cpu-cp38-cp38-linux_x86_64.whl", hash = "sha256:cab92d5101e6db686c5525e04d87cedbcf3a556073d71d07fbe7d1ce09630ffb"},
|
1047 |
+
{file = "torch-2.3.1+cpu-cp38-cp38-win_amd64.whl", hash = "sha256:dbc784569a367fd425158cf4ae82057dd3011185ba5fc68440432ba0562cb5b2"},
|
1048 |
+
{file = "torch-2.3.1+cpu-cp39-cp39-linux_x86_64.whl", hash = "sha256:a3cb8e61ba311cee1bb7463cbdcf3ebdfd071e2091e74c5785e3687eb02819f9"},
|
1049 |
+
{file = "torch-2.3.1+cpu-cp39-cp39-win_amd64.whl", hash = "sha256:df68668056e62c0332e03f43d9da5d4278b39df1ba58d30ec20d34242070955d"},
|
1050 |
]
|
1051 |
|
1052 |
[package.dependencies]
|
1053 |
filelock = "*"
|
1054 |
+
fsspec = "*"
|
1055 |
jinja2 = "*"
|
1056 |
+
mkl = {version = ">=2021.1.1,<=2021.4.0", markers = "platform_system == \"Windows\""}
|
1057 |
networkx = "*"
|
1058 |
sympy = "*"
|
1059 |
+
typing-extensions = ">=4.8.0"
|
1060 |
|
1061 |
[package.extras]
|
1062 |
opt-einsum = ["opt-einsum (>=3.3)"]
|
1063 |
+
optree = ["optree (>=0.9.1)"]
|
1064 |
+
|
1065 |
+
[package.source]
|
1066 |
+
type = "legacy"
|
1067 |
+
url = "https://download.pytorch.org/whl/cpu"
|
1068 |
+
reference = "pytorch_cpu"
|
1069 |
+
|
1070 |
+
[[package]]
|
1071 |
+
name = "torchvision"
|
1072 |
+
version = "0.18.1+cpu"
|
1073 |
+
description = "image and video datasets and models for torch deep learning"
|
1074 |
+
optional = false
|
1075 |
+
python-versions = ">=3.8"
|
1076 |
+
files = [
|
1077 |
+
{file = "torchvision-0.18.1+cpu-cp310-cp310-linux_x86_64.whl", hash = "sha256:2ae9d4e4e11bc43c7ee6c7c7e87b1e6adf5503ad0710e59cd86bc7b1a342d75a"},
|
1078 |
+
{file = "torchvision-0.18.1+cpu-cp310-cp310-win_amd64.whl", hash = "sha256:eb7375cc96c53d2ffd98be5906f2e4cd7e304c88fd3406d334d5b7ae91511665"},
|
1079 |
+
{file = "torchvision-0.18.1+cpu-cp311-cp311-linux_x86_64.whl", hash = "sha256:2c4d6b5c054e5b31d9b23da5c8d70f271307515c2a9f3a234823213bb5997b13"},
|
1080 |
+
{file = "torchvision-0.18.1+cpu-cp311-cp311-win_amd64.whl", hash = "sha256:a002db2ef1137f5eff2b03843ad5cd1514ee09b9eaa5765f19cd03bced036f35"},
|
1081 |
+
{file = "torchvision-0.18.1+cpu-cp312-cp312-linux_x86_64.whl", hash = "sha256:e234971d465e8ce481a2718375d9f0797b4381c2d79bb1a546a5f28e26620629"},
|
1082 |
+
{file = "torchvision-0.18.1+cpu-cp312-cp312-win_amd64.whl", hash = "sha256:39b9e63cb11ca3dba2ef0a05e000d7d196f66e7be641a5fc48d4ed6c93d898e7"},
|
1083 |
+
{file = "torchvision-0.18.1+cpu-cp38-cp38-linux_x86_64.whl", hash = "sha256:0712fb8c5261488afbb859b8107f97309c9d80cb2fe595293b8ec453537dd042"},
|
1084 |
+
{file = "torchvision-0.18.1+cpu-cp38-cp38-win_amd64.whl", hash = "sha256:96bfae7087dbdaee6b486814e1ec9689f69a83451ef495f14cdf2024af00819b"},
|
1085 |
+
{file = "torchvision-0.18.1+cpu-cp39-cp39-linux_x86_64.whl", hash = "sha256:56563d0cae75ec2d7052417a481777a070038f85f9cd1421a90039aaa9feb2b7"},
|
1086 |
+
{file = "torchvision-0.18.1+cpu-cp39-cp39-win_amd64.whl", hash = "sha256:3dd65867b5efc7741fb90d390139f192089ce59f9fce399c275e809cb85de6de"},
|
1087 |
+
]
|
1088 |
+
|
1089 |
+
[package.dependencies]
|
1090 |
+
numpy = "*"
|
1091 |
+
pillow = ">=5.3.0,<8.3.dev0 || >=8.4.dev0"
|
1092 |
+
torch = "2.3.1"
|
1093 |
+
|
1094 |
+
[package.extras]
|
1095 |
+
scipy = ["scipy"]
|
1096 |
|
1097 |
[package.source]
|
1098 |
+
type = "legacy"
|
1099 |
+
url = "https://download.pytorch.org/whl/cpu"
|
1100 |
+
reference = "pytorch_cpu"
|
1101 |
|
1102 |
[[package]]
|
1103 |
name = "tqdm"
|
|
|
1273 |
[metadata]
|
1274 |
lock-version = "2.0"
|
1275 |
python-versions = "^3.9"
|
1276 |
+
content-hash = "34c85a6e00d048e25ccbaa934efcaeb027210fd3e3dcfa59801436d0eacd4350"
|
pyproject.toml
CHANGED
@@ -11,13 +11,19 @@ transformers = "4.29.2"
|
|
11 |
flask = "2.0.3"
|
12 |
xgboost = "1.7.6"
|
13 |
werkzeug = "2.2.2"
|
14 |
-
torch = {url = "https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp38-cp38-linux_x86_64.whl#sha256=fbe35a5c60aef0c4b5463caab10ba905bdfa07d6d16b7be5d510225c966a0b46"}
|
15 |
numpy = "1.26.3"
|
16 |
pandas = "2.2.0"
|
17 |
tqdm = "4.66.1"
|
|
|
|
|
18 |
|
19 |
[tool.poetry.dev-dependencies]
|
20 |
|
|
|
|
|
|
|
|
|
|
|
21 |
[build-system]
|
22 |
requires = ["poetry-core>=1.0.0"]
|
23 |
build-backend = "poetry.core.masonry.api"
|
|
|
11 |
flask = "2.0.3"
|
12 |
xgboost = "1.7.6"
|
13 |
werkzeug = "2.2.2"
|
|
|
14 |
numpy = "1.26.3"
|
15 |
pandas = "2.2.0"
|
16 |
tqdm = "4.66.1"
|
17 |
+
torch = {version = "^2.3.1+cpu", source = "pytorch_cpu"}
|
18 |
+
torchvision = {version = "^0.18.1+cpu", source = "pytorch_cpu"}
|
19 |
|
20 |
[tool.poetry.dev-dependencies]
|
21 |
|
22 |
+
[[tool.poetry.source]]
|
23 |
+
name = "pytorch_cpu"
|
24 |
+
url = "https://download.pytorch.org/whl/cpu"
|
25 |
+
priority = "explicit"
|
26 |
+
|
27 |
[build-system]
|
28 |
requires = ["poetry-core>=1.0.0"]
|
29 |
build-backend = "poetry.core.masonry.api"
|