Spaces:
Paused
Paused
Andrew Smith
commited on
Commit
•
866f0ee
1
Parent(s):
5a22d65
Remove torch as dependency of poetry
Browse files- Dockerfile +2 -0
- poetry.lock +155 -23
- pyproject.toml +0 -1
Dockerfile
CHANGED
@@ -24,6 +24,8 @@ RUN --mount=type=secret,id=DB_URL,mode=0444,required=true \
|
|
24 |
ENV VIRTUAL_ENV=/app/.venv \
|
25 |
PATH="/app/.venv/bin:$PATH"
|
26 |
|
|
|
|
|
27 |
COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
|
28 |
|
29 |
WORKDIR /app
|
|
|
24 |
ENV VIRTUAL_ENV=/app/.venv \
|
25 |
PATH="/app/.venv/bin:$PATH"
|
26 |
|
27 |
+
RUN pip install torch
|
28 |
+
|
29 |
COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
|
30 |
|
31 |
WORKDIR /app
|
poetry.lock
CHANGED
@@ -419,6 +419,23 @@ files = [
|
|
419 |
{file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"},
|
420 |
]
|
421 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
[[package]]
|
423 |
name = "joblib"
|
424 |
version = "1.3.1"
|
@@ -430,6 +447,100 @@ files = [
|
|
430 |
{file = "joblib-1.3.1.tar.gz", hash = "sha256:1f937906df65329ba98013dc9692fe22a4c5e4a648112de500508b18a21b41e3"},
|
431 |
]
|
432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
[[package]]
|
434 |
name = "nltk"
|
435 |
version = "3.8.1"
|
@@ -1206,6 +1317,20 @@ anyio = ">=3.4.0,<5"
|
|
1206 |
[package.extras]
|
1207 |
full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"]
|
1208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1209 |
[[package]]
|
1210 |
name = "threadpoolctl"
|
1211 |
version = "3.1.0"
|
@@ -1273,36 +1398,43 @@ testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests"]
|
|
1273 |
|
1274 |
[[package]]
|
1275 |
name = "torch"
|
1276 |
-
version = "
|
1277 |
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
|
1278 |
optional = false
|
1279 |
-
python-versions = ">=3.
|
1280 |
files = [
|
1281 |
-
{file = "torch-
|
1282 |
-
{file = "torch-
|
1283 |
-
{file = "torch-
|
1284 |
-
{file = "torch-
|
1285 |
-
{file = "torch-
|
1286 |
-
{file = "torch-
|
1287 |
-
{file = "torch-
|
1288 |
-
{file = "torch-
|
1289 |
-
{file = "torch-
|
1290 |
-
{file = "torch-
|
1291 |
-
{file = "torch-
|
1292 |
-
{file = "torch-
|
1293 |
-
{file = "torch-
|
1294 |
-
{file = "torch-
|
1295 |
-
{file = "torch-
|
1296 |
-
{file = "torch-
|
1297 |
-
{file = "torch-
|
1298 |
-
{file = "torch-
|
1299 |
-
{file = "torch-
|
1300 |
-
{file = "torch-
|
1301 |
]
|
1302 |
|
1303 |
[package.dependencies]
|
|
|
|
|
|
|
|
|
1304 |
typing-extensions = "*"
|
1305 |
|
|
|
|
|
|
|
1306 |
[[package]]
|
1307 |
name = "torchvision"
|
1308 |
version = "0.12.0"
|
@@ -1663,4 +1795,4 @@ files = [
|
|
1663 |
[metadata]
|
1664 |
lock-version = "2.0"
|
1665 |
python-versions = "^3.10"
|
1666 |
-
content-hash = "
|
|
|
419 |
{file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"},
|
420 |
]
|
421 |
|
422 |
+
[[package]]
|
423 |
+
name = "jinja2"
|
424 |
+
version = "3.1.2"
|
425 |
+
description = "A very fast and expressive template engine."
|
426 |
+
optional = false
|
427 |
+
python-versions = ">=3.7"
|
428 |
+
files = [
|
429 |
+
{file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"},
|
430 |
+
{file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"},
|
431 |
+
]
|
432 |
+
|
433 |
+
[package.dependencies]
|
434 |
+
MarkupSafe = ">=2.0"
|
435 |
+
|
436 |
+
[package.extras]
|
437 |
+
i18n = ["Babel (>=2.7)"]
|
438 |
+
|
439 |
[[package]]
|
440 |
name = "joblib"
|
441 |
version = "1.3.1"
|
|
|
447 |
{file = "joblib-1.3.1.tar.gz", hash = "sha256:1f937906df65329ba98013dc9692fe22a4c5e4a648112de500508b18a21b41e3"},
|
448 |
]
|
449 |
|
450 |
+
[[package]]
|
451 |
+
name = "markupsafe"
|
452 |
+
version = "2.1.3"
|
453 |
+
description = "Safely add untrusted strings to HTML/XML markup."
|
454 |
+
optional = false
|
455 |
+
python-versions = ">=3.7"
|
456 |
+
files = [
|
457 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"},
|
458 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"},
|
459 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"},
|
460 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"},
|
461 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"},
|
462 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"},
|
463 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"},
|
464 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"},
|
465 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"},
|
466 |
+
{file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"},
|
467 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"},
|
468 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"},
|
469 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"},
|
470 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"},
|
471 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"},
|
472 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"},
|
473 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"},
|
474 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"},
|
475 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"},
|
476 |
+
{file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"},
|
477 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"},
|
478 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"},
|
479 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"},
|
480 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"},
|
481 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"},
|
482 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"},
|
483 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"},
|
484 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"},
|
485 |
+
{file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"},
|
486 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"},
|
487 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"},
|
488 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"},
|
489 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"},
|
490 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"},
|
491 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"},
|
492 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"},
|
493 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"},
|
494 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"},
|
495 |
+
{file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"},
|
496 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"},
|
497 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"},
|
498 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"},
|
499 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"},
|
500 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"},
|
501 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"},
|
502 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"},
|
503 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"},
|
504 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"},
|
505 |
+
{file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"},
|
506 |
+
{file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"},
|
507 |
+
]
|
508 |
+
|
509 |
+
[[package]]
|
510 |
+
name = "mpmath"
|
511 |
+
version = "1.3.0"
|
512 |
+
description = "Python library for arbitrary-precision floating-point arithmetic"
|
513 |
+
optional = false
|
514 |
+
python-versions = "*"
|
515 |
+
files = [
|
516 |
+
{file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"},
|
517 |
+
{file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"},
|
518 |
+
]
|
519 |
+
|
520 |
+
[package.extras]
|
521 |
+
develop = ["codecov", "pycodestyle", "pytest (>=4.6)", "pytest-cov", "wheel"]
|
522 |
+
docs = ["sphinx"]
|
523 |
+
gmpy = ["gmpy2 (>=2.1.0a4)"]
|
524 |
+
tests = ["pytest (>=4.6)"]
|
525 |
+
|
526 |
+
[[package]]
|
527 |
+
name = "networkx"
|
528 |
+
version = "3.1"
|
529 |
+
description = "Python package for creating and manipulating graphs and networks"
|
530 |
+
optional = false
|
531 |
+
python-versions = ">=3.8"
|
532 |
+
files = [
|
533 |
+
{file = "networkx-3.1-py3-none-any.whl", hash = "sha256:4f33f68cb2afcf86f28a45f43efc27a9386b535d567d2127f8f61d51dec58d36"},
|
534 |
+
{file = "networkx-3.1.tar.gz", hash = "sha256:de346335408f84de0eada6ff9fafafff9bcda11f0a0dfaa931133debb146ab61"},
|
535 |
+
]
|
536 |
+
|
537 |
+
[package.extras]
|
538 |
+
default = ["matplotlib (>=3.4)", "numpy (>=1.20)", "pandas (>=1.3)", "scipy (>=1.8)"]
|
539 |
+
developer = ["mypy (>=1.1)", "pre-commit (>=3.2)"]
|
540 |
+
doc = ["nb2plots (>=0.6)", "numpydoc (>=1.5)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.13)", "sphinx (>=6.1)", "sphinx-gallery (>=0.12)", "texext (>=0.6.7)"]
|
541 |
+
extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.10)", "sympy (>=1.10)"]
|
542 |
+
test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"]
|
543 |
+
|
544 |
[[package]]
|
545 |
name = "nltk"
|
546 |
version = "3.8.1"
|
|
|
1317 |
[package.extras]
|
1318 |
full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"]
|
1319 |
|
1320 |
+
[[package]]
|
1321 |
+
name = "sympy"
|
1322 |
+
version = "1.12"
|
1323 |
+
description = "Computer algebra system (CAS) in Python"
|
1324 |
+
optional = false
|
1325 |
+
python-versions = ">=3.8"
|
1326 |
+
files = [
|
1327 |
+
{file = "sympy-1.12-py3-none-any.whl", hash = "sha256:c3588cd4295d0c0f603d0f2ae780587e64e2efeedb3521e46b9bb1d08d184fa5"},
|
1328 |
+
{file = "sympy-1.12.tar.gz", hash = "sha256:ebf595c8dac3e0fdc4152c51878b498396ec7f30e7a914d6071e674d49420fb8"},
|
1329 |
+
]
|
1330 |
+
|
1331 |
+
[package.dependencies]
|
1332 |
+
mpmath = ">=0.19"
|
1333 |
+
|
1334 |
[[package]]
|
1335 |
name = "threadpoolctl"
|
1336 |
version = "3.1.0"
|
|
|
1398 |
|
1399 |
[[package]]
|
1400 |
name = "torch"
|
1401 |
+
version = "2.0.1"
|
1402 |
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
|
1403 |
optional = false
|
1404 |
+
python-versions = ">=3.8.0"
|
1405 |
files = [
|
1406 |
+
{file = "torch-2.0.1-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:8ced00b3ba471856b993822508f77c98f48a458623596a4c43136158781e306a"},
|
1407 |
+
{file = "torch-2.0.1-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:359bfaad94d1cda02ab775dc1cc386d585712329bb47b8741607ef6ef4950747"},
|
1408 |
+
{file = "torch-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:7c84e44d9002182edd859f3400deaa7410f5ec948a519cc7ef512c2f9b34d2c4"},
|
1409 |
+
{file = "torch-2.0.1-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:567f84d657edc5582d716900543e6e62353dbe275e61cdc36eda4929e46df9e7"},
|
1410 |
+
{file = "torch-2.0.1-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:787b5a78aa7917465e9b96399b883920c88a08f4eb63b5a5d2d1a16e27d2f89b"},
|
1411 |
+
{file = "torch-2.0.1-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:e617b1d0abaf6ced02dbb9486803abfef0d581609b09641b34fa315c9c40766d"},
|
1412 |
+
{file = "torch-2.0.1-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:b6019b1de4978e96daa21d6a3ebb41e88a0b474898fe251fd96189587408873e"},
|
1413 |
+
{file = "torch-2.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:dbd68cbd1cd9da32fe5d294dd3411509b3d841baecb780b38b3b7b06c7754434"},
|
1414 |
+
{file = "torch-2.0.1-cp311-none-macosx_10_9_x86_64.whl", hash = "sha256:ef654427d91600129864644e35deea761fb1fe131710180b952a6f2e2207075e"},
|
1415 |
+
{file = "torch-2.0.1-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:25aa43ca80dcdf32f13da04c503ec7afdf8e77e3a0183dd85cd3e53b2842e527"},
|
1416 |
+
{file = "torch-2.0.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:5ef3ea3d25441d3957348f7e99c7824d33798258a2bf5f0f0277cbcadad2e20d"},
|
1417 |
+
{file = "torch-2.0.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:0882243755ff28895e8e6dc6bc26ebcf5aa0911ed81b2a12f241fc4b09075b13"},
|
1418 |
+
{file = "torch-2.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:f66aa6b9580a22b04d0af54fcd042f52406a8479e2b6a550e3d9f95963e168c8"},
|
1419 |
+
{file = "torch-2.0.1-cp38-none-macosx_10_9_x86_64.whl", hash = "sha256:1adb60d369f2650cac8e9a95b1d5758e25d526a34808f7448d0bd599e4ae9072"},
|
1420 |
+
{file = "torch-2.0.1-cp38-none-macosx_11_0_arm64.whl", hash = "sha256:1bcffc16b89e296826b33b98db5166f990e3b72654a2b90673e817b16c50e32b"},
|
1421 |
+
{file = "torch-2.0.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:e10e1597f2175365285db1b24019eb6f04d53dcd626c735fc502f1e8b6be9875"},
|
1422 |
+
{file = "torch-2.0.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:423e0ae257b756bb45a4b49072046772d1ad0c592265c5080070e0767da4e490"},
|
1423 |
+
{file = "torch-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:8742bdc62946c93f75ff92da00e3803216c6cce9b132fbca69664ca38cfb3e18"},
|
1424 |
+
{file = "torch-2.0.1-cp39-none-macosx_10_9_x86_64.whl", hash = "sha256:c62df99352bd6ee5a5a8d1832452110435d178b5164de450831a3a8cc14dc680"},
|
1425 |
+
{file = "torch-2.0.1-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:671a2565e3f63b8fe8e42ae3e36ad249fe5e567435ea27b94edaa672a7d0c416"},
|
1426 |
]
|
1427 |
|
1428 |
[package.dependencies]
|
1429 |
+
filelock = "*"
|
1430 |
+
jinja2 = "*"
|
1431 |
+
networkx = "*"
|
1432 |
+
sympy = "*"
|
1433 |
typing-extensions = "*"
|
1434 |
|
1435 |
+
[package.extras]
|
1436 |
+
opt-einsum = ["opt-einsum (>=3.3)"]
|
1437 |
+
|
1438 |
[[package]]
|
1439 |
name = "torchvision"
|
1440 |
version = "0.12.0"
|
|
|
1795 |
[metadata]
|
1796 |
lock-version = "2.0"
|
1797 |
python-versions = "^3.10"
|
1798 |
+
content-hash = "ed79e9f0742e351170fba0150bc7a338e14fcd1a04911bf57a4bdb1de9729146"
|
pyproject.toml
CHANGED
@@ -12,7 +12,6 @@ vecs = "^0.2.6"
|
|
12 |
sentence-transformers = "^2.2.2"
|
13 |
fastapi = "^0.99.1"
|
14 |
uvicorn = {extras = ["standard"], version = "^0.22.0"}
|
15 |
-
torch = "1.12.0"
|
16 |
|
17 |
[tool.poetry.scripts]
|
18 |
start = "image_search.main:start"
|
|
|
12 |
sentence-transformers = "^2.2.2"
|
13 |
fastapi = "^0.99.1"
|
14 |
uvicorn = {extras = ["standard"], version = "^0.22.0"}
|
|
|
15 |
|
16 |
[tool.poetry.scripts]
|
17 |
start = "image_search.main:start"
|