Spaces:
Runtime error
Runtime error
remove dependencies
Browse files- DESCRIPTION.md +0 -0
- connectfour/app.py +8 -5
- poetry.lock +1 -371
- pyproject.toml +1 -1
- requirements.txt +1 -23
DESCRIPTION.md
ADDED
File without changes
|
connectfour/app.py
CHANGED
@@ -11,23 +11,24 @@ from connectfour.checkpoint import CHECKPOINT
|
|
11 |
from connectfour.training.models import Connect4MaskModel
|
12 |
from connectfour.training.wrappers import Connect4Env
|
13 |
|
14 |
-
demo = gr.Blocks()
|
15 |
-
|
16 |
POLICY_ID = "learned_v5"
|
17 |
|
|
|
|
|
18 |
|
19 |
class Connect4:
|
20 |
def __init__(self, who_plays_first) -> None:
|
21 |
-
ray.init(include_dashboard=False)
|
22 |
-
self.init_env(who_plays_first)
|
23 |
|
24 |
-
def init_env(self, who_plays_first):
|
25 |
# define how to make the environment
|
26 |
env_creator = lambda config: connect_four_v3.env(render_mode="rgb_array")
|
27 |
|
28 |
# register that way to make the environment under an rllib name
|
29 |
register_env("connect4", lambda config: Connect4Env(env_creator(config)))
|
30 |
|
|
|
|
|
|
|
31 |
orig_env = connect_four_v3.env(render_mode="rgb_array")
|
32 |
self.env = Connect4Env(orig_env)
|
33 |
|
@@ -91,6 +92,8 @@ class Connect4:
|
|
91 |
return np.arange(7)[self.obs[self.player_id]["action_mask"] == 1]
|
92 |
|
93 |
|
|
|
|
|
94 |
with demo:
|
95 |
connect4 = Connect4("You")
|
96 |
connect4.get_algo(str(CHECKPOINT))
|
|
|
11 |
from connectfour.training.models import Connect4MaskModel
|
12 |
from connectfour.training.wrappers import Connect4Env
|
13 |
|
|
|
|
|
14 |
POLICY_ID = "learned_v5"
|
15 |
|
16 |
+
# poetry export -f requirements.txt --output requirements.txt --without-hashes
|
17 |
+
|
18 |
|
19 |
class Connect4:
|
20 |
def __init__(self, who_plays_first) -> None:
|
21 |
+
ray.init(include_dashboard=False, ignore_reinit_error=True)
|
|
|
22 |
|
|
|
23 |
# define how to make the environment
|
24 |
env_creator = lambda config: connect_four_v3.env(render_mode="rgb_array")
|
25 |
|
26 |
# register that way to make the environment under an rllib name
|
27 |
register_env("connect4", lambda config: Connect4Env(env_creator(config)))
|
28 |
|
29 |
+
self.init_env(who_plays_first)
|
30 |
+
|
31 |
+
def init_env(self, who_plays_first):
|
32 |
orig_env = connect_four_v3.env(render_mode="rgb_array")
|
33 |
self.env = Connect4Env(orig_env)
|
34 |
|
|
|
92 |
return np.arange(7)[self.obs[self.player_id]["action_mask"] == 1]
|
93 |
|
94 |
|
95 |
+
demo = gr.Blocks()
|
96 |
+
|
97 |
with demo:
|
98 |
connect4 = Connect4("You")
|
99 |
connect4.get_algo(str(CHECKPOINT))
|
poetry.lock
CHANGED
@@ -133,33 +133,6 @@ yarl = ">=1.0,<2.0"
|
|
133 |
[package.extras]
|
134 |
speedups = ["Brotli", "aiodns", "cchardet"]
|
135 |
|
136 |
-
[[package]]
|
137 |
-
name = "aiohttp-cors"
|
138 |
-
version = "0.7.0"
|
139 |
-
description = "CORS support for aiohttp"
|
140 |
-
category = "main"
|
141 |
-
optional = false
|
142 |
-
python-versions = "*"
|
143 |
-
files = [
|
144 |
-
{file = "aiohttp-cors-0.7.0.tar.gz", hash = "sha256:4d39c6d7100fd9764ed1caf8cebf0eb01bf5e3f24e2e073fda6234bc48b19f5d"},
|
145 |
-
{file = "aiohttp_cors-0.7.0-py3-none-any.whl", hash = "sha256:0451ba59fdf6909d0e2cd21e4c0a43752bc0703d33fc78ae94d9d9321710193e"},
|
146 |
-
]
|
147 |
-
|
148 |
-
[package.dependencies]
|
149 |
-
aiohttp = ">=1.1"
|
150 |
-
|
151 |
-
[[package]]
|
152 |
-
name = "aiorwlock"
|
153 |
-
version = "1.3.0"
|
154 |
-
description = "Read write lock for asyncio."
|
155 |
-
category = "main"
|
156 |
-
optional = false
|
157 |
-
python-versions = ">=3.7.0"
|
158 |
-
files = [
|
159 |
-
{file = "aiorwlock-1.3.0-py3-none-any.whl", hash = "sha256:45baf8e4fa9a23e0bb325fbd67da80de1fd7ae1d4f59a6381754c60cec7b289b"},
|
160 |
-
{file = "aiorwlock-1.3.0.tar.gz", hash = "sha256:83f12d87df4b9728a0b8fda1756585ab0d652b107bab59c6084e1b1ad692ab45"},
|
161 |
-
]
|
162 |
-
|
163 |
[[package]]
|
164 |
name = "aiosignal"
|
165 |
version = "1.3.1"
|
@@ -198,18 +171,6 @@ toolz = "*"
|
|
198 |
[package.extras]
|
199 |
dev = ["black", "docutils", "flake8", "ipython", "m2r", "mistune (<2.0.0)", "pytest", "recommonmark", "sphinx", "vega-datasets"]
|
200 |
|
201 |
-
[[package]]
|
202 |
-
name = "ansicon"
|
203 |
-
version = "1.89.0"
|
204 |
-
description = "Python wrapper for loading Jason Hood's ANSICON"
|
205 |
-
category = "main"
|
206 |
-
optional = false
|
207 |
-
python-versions = "*"
|
208 |
-
files = [
|
209 |
-
{file = "ansicon-1.89.0-py2.py3-none-any.whl", hash = "sha256:f1def52d17f65c2c9682cf8370c03f541f410c1752d6a14029f97318e4b9dfec"},
|
210 |
-
{file = "ansicon-1.89.0.tar.gz", hash = "sha256:e4d039def5768a47e4afec8e89e83ec3ae5a26bf00ad851f914d1240b444d2b1"},
|
211 |
-
]
|
212 |
-
|
213 |
[[package]]
|
214 |
name = "anyio"
|
215 |
version = "3.6.2"
|
@@ -329,35 +290,6 @@ d = ["aiohttp (>=3.7.4)"]
|
|
329 |
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
|
330 |
uvloop = ["uvloop (>=0.15.2)"]
|
331 |
|
332 |
-
[[package]]
|
333 |
-
name = "blessed"
|
334 |
-
version = "1.20.0"
|
335 |
-
description = "Easy, practical library for making terminal apps, by providing an elegant, well-documented interface to Colors, Keyboard input, and screen Positioning capabilities."
|
336 |
-
category = "main"
|
337 |
-
optional = false
|
338 |
-
python-versions = ">=2.7"
|
339 |
-
files = [
|
340 |
-
{file = "blessed-1.20.0-py2.py3-none-any.whl", hash = "sha256:0c542922586a265e699188e52d5f5ac5ec0dd517e5a1041d90d2bbf23f906058"},
|
341 |
-
{file = "blessed-1.20.0.tar.gz", hash = "sha256:2cdd67f8746e048f00df47a2880f4d6acbcdb399031b604e34ba8f71d5787680"},
|
342 |
-
]
|
343 |
-
|
344 |
-
[package.dependencies]
|
345 |
-
jinxed = {version = ">=1.1.0", markers = "platform_system == \"Windows\""}
|
346 |
-
six = ">=1.9.0"
|
347 |
-
wcwidth = ">=0.1.4"
|
348 |
-
|
349 |
-
[[package]]
|
350 |
-
name = "cachetools"
|
351 |
-
version = "5.3.0"
|
352 |
-
description = "Extensible memoizing collections and decorators"
|
353 |
-
category = "main"
|
354 |
-
optional = false
|
355 |
-
python-versions = "~=3.7"
|
356 |
-
files = [
|
357 |
-
{file = "cachetools-5.3.0-py3-none-any.whl", hash = "sha256:429e1a1e845c008ea6c85aa35d4b98b65d6a9763eeef3e37e92728a12d1de9d4"},
|
358 |
-
{file = "cachetools-5.3.0.tar.gz", hash = "sha256:13dfddc7b8df938c21a940dfa6557ce6e94a2f1cdfa58eb90c805721d58f2c14"},
|
359 |
-
]
|
360 |
-
|
361 |
[[package]]
|
362 |
name = "certifi"
|
363 |
version = "2022.12.7"
|
@@ -524,21 +456,6 @@ files = [
|
|
524 |
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
|
525 |
]
|
526 |
|
527 |
-
[[package]]
|
528 |
-
name = "colorful"
|
529 |
-
version = "0.5.5"
|
530 |
-
description = "Terminal string styling done right, in Python."
|
531 |
-
category = "main"
|
532 |
-
optional = false
|
533 |
-
python-versions = "*"
|
534 |
-
files = [
|
535 |
-
{file = "colorful-0.5.5-py2.py3-none-any.whl", hash = "sha256:62c187e27c1433db9463ff93b1451898d1e7e23a7e553583fd9daeb6325182e4"},
|
536 |
-
{file = "colorful-0.5.5.tar.gz", hash = "sha256:66f8c1264b2a26f7293b96a03bb7a76c4bc8b9634369a0bffdcd12d618056a1d"},
|
537 |
-
]
|
538 |
-
|
539 |
-
[package.dependencies]
|
540 |
-
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
541 |
-
|
542 |
[[package]]
|
543 |
name = "contourpy"
|
544 |
version = "1.0.7"
|
@@ -931,90 +848,6 @@ files = [
|
|
931 |
{file = "gast-0.5.3.tar.gz", hash = "sha256:cfbea25820e653af9c7d1807f659ce0a0a9c64f2439421a7bba4f0983f532dea"},
|
932 |
]
|
933 |
|
934 |
-
[[package]]
|
935 |
-
name = "google-api-core"
|
936 |
-
version = "2.8.2"
|
937 |
-
description = "Google API client core library"
|
938 |
-
category = "main"
|
939 |
-
optional = false
|
940 |
-
python-versions = ">=3.6"
|
941 |
-
files = [
|
942 |
-
{file = "google-api-core-2.8.2.tar.gz", hash = "sha256:06f7244c640322b508b125903bb5701bebabce8832f85aba9335ec00b3d02edc"},
|
943 |
-
{file = "google_api_core-2.8.2-py3-none-any.whl", hash = "sha256:93c6a91ccac79079ac6bbf8b74ee75db970cc899278b97d53bc012f35908cf50"},
|
944 |
-
]
|
945 |
-
|
946 |
-
[package.dependencies]
|
947 |
-
google-auth = ">=1.25.0,<3.0dev"
|
948 |
-
googleapis-common-protos = ">=1.56.2,<2.0dev"
|
949 |
-
protobuf = ">=3.15.0,<5.0.0dev"
|
950 |
-
requests = ">=2.18.0,<3.0.0dev"
|
951 |
-
|
952 |
-
[package.extras]
|
953 |
-
grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio-status (>=1.33.2,<2.0dev)"]
|
954 |
-
|
955 |
-
[[package]]
|
956 |
-
name = "google-auth"
|
957 |
-
version = "2.17.0"
|
958 |
-
description = "Google Authentication Library"
|
959 |
-
category = "main"
|
960 |
-
optional = false
|
961 |
-
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
|
962 |
-
files = [
|
963 |
-
{file = "google-auth-2.17.0.tar.gz", hash = "sha256:f51d26ebb3e5d723b9a7dbd310b6c88654ef1ad1fc35750d1fdba48ca4d82f52"},
|
964 |
-
{file = "google_auth-2.17.0-py2.py3-none-any.whl", hash = "sha256:45ba9b4b3e49406de3c5451697820694b2f6ce8a6b75bb187852fdae231dab94"},
|
965 |
-
]
|
966 |
-
|
967 |
-
[package.dependencies]
|
968 |
-
cachetools = ">=2.0.0,<6.0"
|
969 |
-
pyasn1-modules = ">=0.2.1"
|
970 |
-
rsa = {version = ">=3.1.4,<5", markers = "python_version >= \"3.6\""}
|
971 |
-
six = ">=1.9.0"
|
972 |
-
|
973 |
-
[package.extras]
|
974 |
-
aiohttp = ["aiohttp (>=3.6.2,<4.0.0dev)", "requests (>=2.20.0,<3.0.0dev)"]
|
975 |
-
enterprise-cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"]
|
976 |
-
pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"]
|
977 |
-
reauth = ["pyu2f (>=0.1.5)"]
|
978 |
-
requests = ["requests (>=2.20.0,<3.0.0dev)"]
|
979 |
-
|
980 |
-
[[package]]
|
981 |
-
name = "googleapis-common-protos"
|
982 |
-
version = "1.56.4"
|
983 |
-
description = "Common protobufs used in Google APIs"
|
984 |
-
category = "main"
|
985 |
-
optional = false
|
986 |
-
python-versions = ">=3.7"
|
987 |
-
files = [
|
988 |
-
{file = "googleapis-common-protos-1.56.4.tar.gz", hash = "sha256:c25873c47279387cfdcbdafa36149887901d36202cb645a0e4f29686bf6e4417"},
|
989 |
-
{file = "googleapis_common_protos-1.56.4-py2.py3-none-any.whl", hash = "sha256:8eb2cbc91b69feaf23e32452a7ae60e791e09967d81d4fcc7fc388182d1bd394"},
|
990 |
-
]
|
991 |
-
|
992 |
-
[package.dependencies]
|
993 |
-
protobuf = ">=3.15.0,<5.0.0dev"
|
994 |
-
|
995 |
-
[package.extras]
|
996 |
-
grpc = ["grpcio (>=1.0.0,<2.0.0dev)"]
|
997 |
-
|
998 |
-
[[package]]
|
999 |
-
name = "gpustat"
|
1000 |
-
version = "1.0.0"
|
1001 |
-
description = "An utility to monitor NVIDIA GPU status and usage"
|
1002 |
-
category = "main"
|
1003 |
-
optional = false
|
1004 |
-
python-versions = ">=3.4"
|
1005 |
-
files = [
|
1006 |
-
{file = "gpustat-1.0.0.tar.gz", hash = "sha256:581e8ff858c32c95a322bb8f03f1d9dc3d177b4ecb33ddcbed2c373c67f4e3f1"},
|
1007 |
-
]
|
1008 |
-
|
1009 |
-
[package.dependencies]
|
1010 |
-
blessed = ">=1.17.1"
|
1011 |
-
nvidia-ml-py = ">=11.450.129,<=11.495.46"
|
1012 |
-
psutil = ">=5.6.0"
|
1013 |
-
six = ">=1.7"
|
1014 |
-
|
1015 |
-
[package.extras]
|
1016 |
-
test = ["mockito (>=1.2.1)", "pytest (>=5.4.1)", "pytest-runner"]
|
1017 |
-
|
1018 |
[[package]]
|
1019 |
name = "gradio"
|
1020 |
version = "3.23.0"
|
@@ -1436,21 +1269,6 @@ MarkupSafe = ">=2.0"
|
|
1436 |
[package.extras]
|
1437 |
i18n = ["Babel (>=2.7)"]
|
1438 |
|
1439 |
-
[[package]]
|
1440 |
-
name = "jinxed"
|
1441 |
-
version = "1.2.0"
|
1442 |
-
description = "Jinxed Terminal Library"
|
1443 |
-
category = "main"
|
1444 |
-
optional = false
|
1445 |
-
python-versions = "*"
|
1446 |
-
files = [
|
1447 |
-
{file = "jinxed-1.2.0-py2.py3-none-any.whl", hash = "sha256:cfc2b2e4e3b4326954d546ba6d6b9a7a796ddcb0aef8d03161d005177eb0d48b"},
|
1448 |
-
{file = "jinxed-1.2.0.tar.gz", hash = "sha256:032acda92d5c57cd216033cbbd53de731e6ed50deb63eb4781336ca55f72cda5"},
|
1449 |
-
]
|
1450 |
-
|
1451 |
-
[package.dependencies]
|
1452 |
-
ansicon = {version = "*", markers = "platform_system == \"Windows\""}
|
1453 |
-
|
1454 |
[[package]]
|
1455 |
name = "jsonschema"
|
1456 |
version = "4.17.3"
|
@@ -2339,18 +2157,6 @@ files = [
|
|
2339 |
setuptools = "*"
|
2340 |
wheel = "*"
|
2341 |
|
2342 |
-
[[package]]
|
2343 |
-
name = "nvidia-ml-py"
|
2344 |
-
version = "11.495.46"
|
2345 |
-
description = "Python Bindings for the NVIDIA Management Library"
|
2346 |
-
category = "main"
|
2347 |
-
optional = false
|
2348 |
-
python-versions = "*"
|
2349 |
-
files = [
|
2350 |
-
{file = "nvidia-ml-py-11.495.46.tar.gz", hash = "sha256:8f68e1af274756067632c7e1b79fb1a93a8dddf1e04851fccaeb34adfa599625"},
|
2351 |
-
{file = "nvidia_ml_py-11.495.46-py3-none-any.whl", hash = "sha256:8a18e5c77716ffebd8eff3b2bdc6324c9825b51630280655d5478ff463f17827"},
|
2352 |
-
]
|
2353 |
-
|
2354 |
[[package]]
|
2355 |
name = "nvidia-nccl-cu11"
|
2356 |
version = "2.14.3"
|
@@ -2378,34 +2184,6 @@ files = [
|
|
2378 |
setuptools = "*"
|
2379 |
wheel = "*"
|
2380 |
|
2381 |
-
[[package]]
|
2382 |
-
name = "opencensus"
|
2383 |
-
version = "0.11.2"
|
2384 |
-
description = "A stats collection and distributed tracing framework"
|
2385 |
-
category = "main"
|
2386 |
-
optional = false
|
2387 |
-
python-versions = "*"
|
2388 |
-
files = [
|
2389 |
-
{file = "opencensus-0.11.2-py2.py3-none-any.whl", hash = "sha256:7a1a34b87c8db3d9984e97ff05739058342f24de1d700766d59044eee8fb3b3f"},
|
2390 |
-
{file = "opencensus-0.11.2.tar.gz", hash = "sha256:6154042a236b9ecdd55a23dfbb2743bb3deacd0687e3e0391ec2e0c74950d66f"},
|
2391 |
-
]
|
2392 |
-
|
2393 |
-
[package.dependencies]
|
2394 |
-
google-api-core = {version = ">=1.0.0,<3.0.0", markers = "python_version >= \"3.6\""}
|
2395 |
-
opencensus-context = ">=0.1.3"
|
2396 |
-
|
2397 |
-
[[package]]
|
2398 |
-
name = "opencensus-context"
|
2399 |
-
version = "0.1.3"
|
2400 |
-
description = "OpenCensus Runtime Context"
|
2401 |
-
category = "main"
|
2402 |
-
optional = false
|
2403 |
-
python-versions = "*"
|
2404 |
-
files = [
|
2405 |
-
{file = "opencensus-context-0.1.3.tar.gz", hash = "sha256:a03108c3c10d8c80bb5ddf5c8a1f033161fa61972a9917f9b9b3a18517f0088c"},
|
2406 |
-
{file = "opencensus_context-0.1.3-py2.py3-none-any.whl", hash = "sha256:073bb0590007af276853009fac7e4bab1d523c3f03baf4cb4511ca38967c6039"},
|
2407 |
-
]
|
2408 |
-
|
2409 |
[[package]]
|
2410 |
name = "orjson"
|
2411 |
version = "3.8.8"
|
@@ -2691,21 +2469,6 @@ files = [
|
|
2691 |
dev = ["pre-commit", "tox"]
|
2692 |
testing = ["pytest", "pytest-benchmark"]
|
2693 |
|
2694 |
-
[[package]]
|
2695 |
-
name = "prometheus-client"
|
2696 |
-
version = "0.16.0"
|
2697 |
-
description = "Python client for the Prometheus monitoring system."
|
2698 |
-
category = "main"
|
2699 |
-
optional = false
|
2700 |
-
python-versions = ">=3.6"
|
2701 |
-
files = [
|
2702 |
-
{file = "prometheus_client-0.16.0-py3-none-any.whl", hash = "sha256:0836af6eb2c8f4fed712b2f279f6c0a8bbab29f9f4aa15276b91c7cb0d1616ab"},
|
2703 |
-
{file = "prometheus_client-0.16.0.tar.gz", hash = "sha256:a03e35b359f14dd1630898543e2120addfdeacd1a6069c1367ae90fd93ad3f48"},
|
2704 |
-
]
|
2705 |
-
|
2706 |
-
[package.extras]
|
2707 |
-
twisted = ["twisted"]
|
2708 |
-
|
2709 |
[[package]]
|
2710 |
name = "protobuf"
|
2711 |
version = "3.17.0"
|
@@ -2742,77 +2505,6 @@ files = [
|
|
2742 |
[package.dependencies]
|
2743 |
six = ">=1.9"
|
2744 |
|
2745 |
-
[[package]]
|
2746 |
-
name = "psutil"
|
2747 |
-
version = "5.9.4"
|
2748 |
-
description = "Cross-platform lib for process and system monitoring in Python."
|
2749 |
-
category = "main"
|
2750 |
-
optional = false
|
2751 |
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
2752 |
-
files = [
|
2753 |
-
{file = "psutil-5.9.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c1ca331af862803a42677c120aff8a814a804e09832f166f226bfd22b56feee8"},
|
2754 |
-
{file = "psutil-5.9.4-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:68908971daf802203f3d37e78d3f8831b6d1014864d7a85937941bb35f09aefe"},
|
2755 |
-
{file = "psutil-5.9.4-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:3ff89f9b835100a825b14c2808a106b6fdcc4b15483141482a12c725e7f78549"},
|
2756 |
-
{file = "psutil-5.9.4-cp27-cp27m-win32.whl", hash = "sha256:852dd5d9f8a47169fe62fd4a971aa07859476c2ba22c2254d4a1baa4e10b95ad"},
|
2757 |
-
{file = "psutil-5.9.4-cp27-cp27m-win_amd64.whl", hash = "sha256:9120cd39dca5c5e1c54b59a41d205023d436799b1c8c4d3ff71af18535728e94"},
|
2758 |
-
{file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6b92c532979bafc2df23ddc785ed116fced1f492ad90a6830cf24f4d1ea27d24"},
|
2759 |
-
{file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:efeae04f9516907be44904cc7ce08defb6b665128992a56957abc9b61dca94b7"},
|
2760 |
-
{file = "psutil-5.9.4-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:54d5b184728298f2ca8567bf83c422b706200bcbbfafdc06718264f9393cfeb7"},
|
2761 |
-
{file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16653106f3b59386ffe10e0bad3bb6299e169d5327d3f187614b1cb8f24cf2e1"},
|
2762 |
-
{file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54c0d3d8e0078b7666984e11b12b88af2db11d11249a8ac8920dd5ef68a66e08"},
|
2763 |
-
{file = "psutil-5.9.4-cp36-abi3-win32.whl", hash = "sha256:149555f59a69b33f056ba1c4eb22bb7bf24332ce631c44a319cec09f876aaeff"},
|
2764 |
-
{file = "psutil-5.9.4-cp36-abi3-win_amd64.whl", hash = "sha256:fd8522436a6ada7b4aad6638662966de0d61d241cb821239b2ae7013d41a43d4"},
|
2765 |
-
{file = "psutil-5.9.4-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:6001c809253a29599bc0dfd5179d9f8a5779f9dffea1da0f13c53ee568115e1e"},
|
2766 |
-
{file = "psutil-5.9.4.tar.gz", hash = "sha256:3d7f9739eb435d4b1338944abe23f49584bde5395f27487d2ee25ad9a8774a62"},
|
2767 |
-
]
|
2768 |
-
|
2769 |
-
[package.extras]
|
2770 |
-
test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"]
|
2771 |
-
|
2772 |
-
[[package]]
|
2773 |
-
name = "py-spy"
|
2774 |
-
version = "0.3.14"
|
2775 |
-
description = "Sampling profiler for Python programs"
|
2776 |
-
category = "main"
|
2777 |
-
optional = false
|
2778 |
-
python-versions = "*"
|
2779 |
-
files = [
|
2780 |
-
{file = "py_spy-0.3.14-py2.py3-none-macosx_10_7_x86_64.whl", hash = "sha256:5b342cc5feb8d160d57a7ff308de153f6be68dcf506ad02b4d67065f2bae7f45"},
|
2781 |
-
{file = "py_spy-0.3.14-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:fe7efe6c91f723442259d428bf1f9ddb9c1679828866b353d539345ca40d9dd2"},
|
2782 |
-
{file = "py_spy-0.3.14-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590905447241d789d9de36cff9f52067b6f18d8b5e9fb399242041568d414461"},
|
2783 |
-
{file = "py_spy-0.3.14-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd6211fe7f587b3532ba9d300784326d9a6f2b890af7bf6fff21a029ebbc812b"},
|
2784 |
-
{file = "py_spy-0.3.14-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3e8e48032e71c94c3dd51694c39e762e4bbfec250df5bf514adcdd64e79371e0"},
|
2785 |
-
{file = "py_spy-0.3.14-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:f59b0b52e56ba9566305236375e6fc68888261d0d36b5addbe3cf85affbefc0e"},
|
2786 |
-
{file = "py_spy-0.3.14-py2.py3-none-win_amd64.whl", hash = "sha256:8f5b311d09f3a8e33dbd0d44fc6e37b715e8e0c7efefafcda8bfd63b31ab5a31"},
|
2787 |
-
]
|
2788 |
-
|
2789 |
-
[[package]]
|
2790 |
-
name = "pyasn1"
|
2791 |
-
version = "0.4.8"
|
2792 |
-
description = "ASN.1 types and codecs"
|
2793 |
-
category = "main"
|
2794 |
-
optional = false
|
2795 |
-
python-versions = "*"
|
2796 |
-
files = [
|
2797 |
-
{file = "pyasn1-0.4.8-py2.py3-none-any.whl", hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d"},
|
2798 |
-
{file = "pyasn1-0.4.8.tar.gz", hash = "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba"},
|
2799 |
-
]
|
2800 |
-
|
2801 |
-
[[package]]
|
2802 |
-
name = "pyasn1-modules"
|
2803 |
-
version = "0.2.8"
|
2804 |
-
description = "A collection of ASN.1-based protocols modules."
|
2805 |
-
category = "main"
|
2806 |
-
optional = false
|
2807 |
-
python-versions = "*"
|
2808 |
-
files = [
|
2809 |
-
{file = "pyasn1-modules-0.2.8.tar.gz", hash = "sha256:905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e"},
|
2810 |
-
{file = "pyasn1_modules-0.2.8-py2.py3-none-any.whl", hash = "sha256:a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74"},
|
2811 |
-
]
|
2812 |
-
|
2813 |
-
[package.dependencies]
|
2814 |
-
pyasn1 = ">=0.4.6,<0.5.0"
|
2815 |
-
|
2816 |
[[package]]
|
2817 |
name = "pydantic"
|
2818 |
version = "1.10.7"
|
@@ -3237,18 +2929,12 @@ files = [
|
|
3237 |
]
|
3238 |
|
3239 |
[package.dependencies]
|
3240 |
-
aiohttp = {version = ">=3.7", optional = true, markers = "extra == \"serve\""}
|
3241 |
-
aiohttp-cors = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3242 |
-
aiorwlock = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3243 |
aiosignal = "*"
|
3244 |
attrs = "*"
|
3245 |
click = ">=7.0"
|
3246 |
-
colorful = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3247 |
dm-tree = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
3248 |
-
fastapi = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3249 |
filelock = "*"
|
3250 |
frozenlist = "*"
|
3251 |
-
gpustat = {version = ">=1.0.0", optional = true, markers = "extra == \"serve\""}
|
3252 |
grpcio = [
|
3253 |
{version = ">=1.32.0", markers = "python_version < \"3.10\" and sys_platform != \"darwin\""},
|
3254 |
{version = ">=1.32.0,<=1.49.1", markers = "python_version < \"3.10\" and sys_platform == \"darwin\""},
|
@@ -3263,24 +2949,17 @@ numpy = [
|
|
3263 |
{version = ">=1.16", markers = "python_version < \"3.9\""},
|
3264 |
{version = ">=1.19.3", markers = "python_version >= \"3.9\""},
|
3265 |
]
|
3266 |
-
opencensus = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3267 |
packaging = {version = "*", markers = "python_version >= \"3.10\""}
|
3268 |
pandas = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
3269 |
-
prometheus-client = {version = ">=0.7.1", optional = true, markers = "extra == \"serve\""}
|
3270 |
protobuf = ">=3.15.3,<3.19.5 || >3.19.5"
|
3271 |
-
py-spy = {version = ">=0.2.0", optional = true, markers = "extra == \"serve\""}
|
3272 |
-
pydantic = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3273 |
pyyaml = "*"
|
3274 |
requests = "*"
|
3275 |
rich = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
3276 |
scikit-image = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
3277 |
scipy = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
3278 |
-
smart-open = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3279 |
-
starlette = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3280 |
tabulate = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
3281 |
tensorboardX = {version = ">=1.9", optional = true, markers = "extra == \"rllib\""}
|
3282 |
typer = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
3283 |
-
uvicorn = {version = "*", optional = true, markers = "extra == \"serve\""}
|
3284 |
virtualenv = ">=20.0.24"
|
3285 |
|
3286 |
[package.extras]
|
@@ -3356,21 +3035,6 @@ typing-extensions = {version = ">=4.0.0,<5.0", markers = "python_version < \"3.9
|
|
3356 |
[package.extras]
|
3357 |
jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
3358 |
|
3359 |
-
[[package]]
|
3360 |
-
name = "rsa"
|
3361 |
-
version = "4.9"
|
3362 |
-
description = "Pure-Python RSA implementation"
|
3363 |
-
category = "main"
|
3364 |
-
optional = false
|
3365 |
-
python-versions = ">=3.6,<4"
|
3366 |
-
files = [
|
3367 |
-
{file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"},
|
3368 |
-
{file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"},
|
3369 |
-
]
|
3370 |
-
|
3371 |
-
[package.dependencies]
|
3372 |
-
pyasn1 = ">=0.1.3"
|
3373 |
-
|
3374 |
[[package]]
|
3375 |
name = "scikit-image"
|
3376 |
version = "0.20.0"
|
@@ -3506,28 +3170,6 @@ files = [
|
|
3506 |
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
|
3507 |
]
|
3508 |
|
3509 |
-
[[package]]
|
3510 |
-
name = "smart-open"
|
3511 |
-
version = "6.3.0"
|
3512 |
-
description = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)"
|
3513 |
-
category = "main"
|
3514 |
-
optional = false
|
3515 |
-
python-versions = ">=3.6,<4.0"
|
3516 |
-
files = [
|
3517 |
-
{file = "smart_open-6.3.0-py3-none-any.whl", hash = "sha256:b4c9ae193ad6d3e7add50944b86afa0d150bd821ab8ec21edb26d9a06b66f6a8"},
|
3518 |
-
{file = "smart_open-6.3.0.tar.gz", hash = "sha256:d5238825fe9a9340645fac3d75b287c08fbb99fb2b422477de781c9f5f09e019"},
|
3519 |
-
]
|
3520 |
-
|
3521 |
-
[package.extras]
|
3522 |
-
all = ["azure-common", "azure-core", "azure-storage-blob", "boto3", "google-cloud-storage (>=2.6.0)", "paramiko", "requests"]
|
3523 |
-
azure = ["azure-common", "azure-core", "azure-storage-blob"]
|
3524 |
-
gcs = ["google-cloud-storage (>=2.6.0)"]
|
3525 |
-
http = ["requests"]
|
3526 |
-
s3 = ["boto3"]
|
3527 |
-
ssh = ["paramiko"]
|
3528 |
-
test = ["azure-common", "azure-core", "azure-storage-blob", "boto3", "google-cloud-storage (>=2.6.0)", "moto[server]", "paramiko", "pytest", "pytest-rerunfailures", "requests", "responses"]
|
3529 |
-
webhdfs = ["requests"]
|
3530 |
-
|
3531 |
[[package]]
|
3532 |
name = "sniffio"
|
3533 |
version = "1.3.0"
|
@@ -3904,18 +3546,6 @@ platformdirs = ">=2.4,<4"
|
|
3904 |
docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=22.12)"]
|
3905 |
test = ["covdefaults (>=2.2.2)", "coverage (>=7.1)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23)", "pytest (>=7.2.1)", "pytest-env (>=0.8.1)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.10)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)"]
|
3906 |
|
3907 |
-
[[package]]
|
3908 |
-
name = "wcwidth"
|
3909 |
-
version = "0.2.6"
|
3910 |
-
description = "Measures the displayed width of unicode strings in a terminal"
|
3911 |
-
category = "main"
|
3912 |
-
optional = false
|
3913 |
-
python-versions = "*"
|
3914 |
-
files = [
|
3915 |
-
{file = "wcwidth-0.2.6-py2.py3-none-any.whl", hash = "sha256:795b138f6875577cd91bba52baf9e445cd5118fd32723b460e30a0af30ea230e"},
|
3916 |
-
{file = "wcwidth-0.2.6.tar.gz", hash = "sha256:a5220780a404dbe3353789870978e472cfe477761f06ee55077256e509b156d0"},
|
3917 |
-
]
|
3918 |
-
|
3919 |
[[package]]
|
3920 |
name = "websockets"
|
3921 |
version = "10.4"
|
@@ -4202,4 +3832,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more
|
|
4202 |
[metadata]
|
4203 |
lock-version = "2.0"
|
4204 |
python-versions = ">=3.8,<3.11"
|
4205 |
-
content-hash = "
|
|
|
133 |
[package.extras]
|
134 |
speedups = ["Brotli", "aiodns", "cchardet"]
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
[[package]]
|
137 |
name = "aiosignal"
|
138 |
version = "1.3.1"
|
|
|
171 |
[package.extras]
|
172 |
dev = ["black", "docutils", "flake8", "ipython", "m2r", "mistune (<2.0.0)", "pytest", "recommonmark", "sphinx", "vega-datasets"]
|
173 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
[[package]]
|
175 |
name = "anyio"
|
176 |
version = "3.6.2"
|
|
|
290 |
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
|
291 |
uvloop = ["uvloop (>=0.15.2)"]
|
292 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
[[package]]
|
294 |
name = "certifi"
|
295 |
version = "2022.12.7"
|
|
|
456 |
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
|
457 |
]
|
458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
[[package]]
|
460 |
name = "contourpy"
|
461 |
version = "1.0.7"
|
|
|
848 |
{file = "gast-0.5.3.tar.gz", hash = "sha256:cfbea25820e653af9c7d1807f659ce0a0a9c64f2439421a7bba4f0983f532dea"},
|
849 |
]
|
850 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
851 |
[[package]]
|
852 |
name = "gradio"
|
853 |
version = "3.23.0"
|
|
|
1269 |
[package.extras]
|
1270 |
i18n = ["Babel (>=2.7)"]
|
1271 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1272 |
[[package]]
|
1273 |
name = "jsonschema"
|
1274 |
version = "4.17.3"
|
|
|
2157 |
setuptools = "*"
|
2158 |
wheel = "*"
|
2159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2160 |
[[package]]
|
2161 |
name = "nvidia-nccl-cu11"
|
2162 |
version = "2.14.3"
|
|
|
2184 |
setuptools = "*"
|
2185 |
wheel = "*"
|
2186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2187 |
[[package]]
|
2188 |
name = "orjson"
|
2189 |
version = "3.8.8"
|
|
|
2469 |
dev = ["pre-commit", "tox"]
|
2470 |
testing = ["pytest", "pytest-benchmark"]
|
2471 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2472 |
[[package]]
|
2473 |
name = "protobuf"
|
2474 |
version = "3.17.0"
|
|
|
2505 |
[package.dependencies]
|
2506 |
six = ">=1.9"
|
2507 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2508 |
[[package]]
|
2509 |
name = "pydantic"
|
2510 |
version = "1.10.7"
|
|
|
2929 |
]
|
2930 |
|
2931 |
[package.dependencies]
|
|
|
|
|
|
|
2932 |
aiosignal = "*"
|
2933 |
attrs = "*"
|
2934 |
click = ">=7.0"
|
|
|
2935 |
dm-tree = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
|
|
2936 |
filelock = "*"
|
2937 |
frozenlist = "*"
|
|
|
2938 |
grpcio = [
|
2939 |
{version = ">=1.32.0", markers = "python_version < \"3.10\" and sys_platform != \"darwin\""},
|
2940 |
{version = ">=1.32.0,<=1.49.1", markers = "python_version < \"3.10\" and sys_platform == \"darwin\""},
|
|
|
2949 |
{version = ">=1.16", markers = "python_version < \"3.9\""},
|
2950 |
{version = ">=1.19.3", markers = "python_version >= \"3.9\""},
|
2951 |
]
|
|
|
2952 |
packaging = {version = "*", markers = "python_version >= \"3.10\""}
|
2953 |
pandas = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
|
|
2954 |
protobuf = ">=3.15.3,<3.19.5 || >3.19.5"
|
|
|
|
|
2955 |
pyyaml = "*"
|
2956 |
requests = "*"
|
2957 |
rich = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
2958 |
scikit-image = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
2959 |
scipy = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
|
|
|
|
2960 |
tabulate = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
2961 |
tensorboardX = {version = ">=1.9", optional = true, markers = "extra == \"rllib\""}
|
2962 |
typer = {version = "*", optional = true, markers = "extra == \"rllib\""}
|
|
|
2963 |
virtualenv = ">=20.0.24"
|
2964 |
|
2965 |
[package.extras]
|
|
|
3035 |
[package.extras]
|
3036 |
jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
3037 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3038 |
[[package]]
|
3039 |
name = "scikit-image"
|
3040 |
version = "0.20.0"
|
|
|
3170 |
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
|
3171 |
]
|
3172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3173 |
[[package]]
|
3174 |
name = "sniffio"
|
3175 |
version = "1.3.0"
|
|
|
3546 |
docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=22.12)"]
|
3547 |
test = ["covdefaults (>=2.2.2)", "coverage (>=7.1)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23)", "pytest (>=7.2.1)", "pytest-env (>=0.8.1)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.10)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)"]
|
3548 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3549 |
[[package]]
|
3550 |
name = "websockets"
|
3551 |
version = "10.4"
|
|
|
3832 |
[metadata]
|
3833 |
lock-version = "2.0"
|
3834 |
python-versions = ">=3.8,<3.11"
|
3835 |
+
content-hash = "6ac937208f9e895063d08a5437db35ed4c5d75275bcf70e8503c609f42b8f302"
|
pyproject.toml
CHANGED
@@ -17,7 +17,7 @@ include = [
|
|
17 |
python = ">=3.8,<3.11"
|
18 |
orjson = "3.8.8"
|
19 |
gradio = "^3.23.0"
|
20 |
-
ray = {extras = ["rllib"
|
21 |
pettingzoo = "^1.22.4"
|
22 |
pygame = "^2.3.0"
|
23 |
torch = "^2.0.0"
|
|
|
17 |
python = ">=3.8,<3.11"
|
18 |
orjson = "3.8.8"
|
19 |
gradio = "^3.23.0"
|
20 |
+
ray = {extras = ["rllib"], version = "^2.2.0"}
|
21 |
pettingzoo = "^1.22.4"
|
22 |
pygame = "^2.3.0"
|
23 |
torch = "^2.0.0"
|
requirements.txt
CHANGED
@@ -1,23 +1,17 @@
|
|
1 |
absl-py==1.4.0 ; python_version >= "3.8" and python_version < "3.11"
|
2 |
aiofiles==23.1.0 ; python_version >= "3.8" and python_version < "3.11"
|
3 |
-
aiohttp-cors==0.7.0 ; python_version >= "3.8" and python_version < "3.11"
|
4 |
aiohttp==3.8.4 ; python_version >= "3.8" and python_version < "3.11"
|
5 |
-
aiorwlock==1.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
6 |
aiosignal==1.3.1 ; python_version >= "3.8" and python_version < "3.11"
|
7 |
altair==4.2.2 ; python_version >= "3.8" and python_version < "3.11"
|
8 |
-
ansicon==1.89.0 ; python_version >= "3.8" and python_version < "3.11" and platform_system == "Windows"
|
9 |
anyio==3.6.2 ; python_version >= "3.8" and python_version < "3.11"
|
10 |
async-timeout==4.0.2 ; python_version >= "3.8" and python_version < "3.11"
|
11 |
attrs==22.2.0 ; python_version >= "3.8" and python_version < "3.11"
|
12 |
-
blessed==1.20.0 ; python_version >= "3.8" and python_version < "3.11"
|
13 |
-
cachetools==5.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
14 |
certifi==2022.12.7 ; python_version >= "3.8" and python_version < "3.11"
|
15 |
charset-normalizer==3.1.0 ; python_version >= "3.8" and python_version < "3.11"
|
16 |
click==8.1.3 ; python_version >= "3.8" and python_version < "3.11"
|
17 |
cloudpickle==2.2.1 ; python_version >= "3.8" and python_version < "3.11"
|
18 |
cmake==3.26.1 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
19 |
colorama==0.4.6 ; python_version >= "3.8" and python_version < "3.11" and platform_system == "Windows"
|
20 |
-
colorful==0.5.5 ; python_version >= "3.8" and python_version < "3.11"
|
21 |
contourpy==1.0.7 ; python_version >= "3.8" and python_version < "3.11"
|
22 |
cycler==0.11.0 ; python_version >= "3.8" and python_version < "3.11"
|
23 |
decorator==5.1.1 ; python_version >= "3.8" and python_version < "3.11"
|
@@ -31,10 +25,6 @@ fonttools==4.39.3 ; python_version >= "3.8" and python_version < "3.11"
|
|
31 |
frozenlist==1.3.3 ; python_version >= "3.8" and python_version < "3.11"
|
32 |
fsspec==2023.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
33 |
gast==0.5.3 ; python_version >= "3.8" and python_version < "3.11"
|
34 |
-
google-api-core==2.8.2 ; python_version >= "3.8" and python_version < "3.11"
|
35 |
-
google-auth==2.17.0 ; python_version >= "3.8" and python_version < "3.11"
|
36 |
-
googleapis-common-protos==1.56.4 ; python_version >= "3.8" and python_version < "3.11"
|
37 |
-
gpustat==1.0.0 ; python_version >= "3.8" and python_version < "3.11"
|
38 |
gradio==3.23.0 ; python_version >= "3.8" and python_version < "3.11"
|
39 |
grpcio==1.49.1 ; python_version >= "3.8" and python_version < "3.11" and sys_platform == "darwin"
|
40 |
grpcio==1.53.0 ; python_version >= "3.8" and python_version < "3.11" and sys_platform != "darwin"
|
@@ -49,7 +39,6 @@ imageio==2.27.0 ; python_version >= "3.8" and python_version < "3.11"
|
|
49 |
importlib-metadata==6.1.0 ; python_version >= "3.8" and python_version < "3.10"
|
50 |
importlib-resources==5.12.0 ; python_version >= "3.8" and python_version < "3.10"
|
51 |
jinja2==3.1.2 ; python_version >= "3.8" and python_version < "3.11"
|
52 |
-
jinxed==1.2.0 ; python_version >= "3.8" and python_version < "3.11" and platform_system == "Windows"
|
53 |
jsonschema==4.17.3 ; python_version >= "3.8" and python_version < "3.11"
|
54 |
kiwisolver==1.4.4 ; python_version >= "3.8" and python_version < "3.11"
|
55 |
lazy-loader==0.2 ; python_version >= "3.8" and python_version < "3.11"
|
@@ -77,11 +66,8 @@ nvidia-cufft-cu11==10.9.0.58 ; platform_system == "Linux" and platform_machine =
|
|
77 |
nvidia-curand-cu11==10.2.10.91 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
78 |
nvidia-cusolver-cu11==11.4.0.1 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
79 |
nvidia-cusparse-cu11==11.7.4.91 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
80 |
-
nvidia-ml-py==11.495.46 ; python_version >= "3.8" and python_version < "3.11"
|
81 |
nvidia-nccl-cu11==2.14.3 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
82 |
nvidia-nvtx-cu11==11.7.91 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
83 |
-
opencensus-context==0.1.3 ; python_version >= "3.8" and python_version < "3.11"
|
84 |
-
opencensus==0.11.2 ; python_version >= "3.8" and python_version < "3.11"
|
85 |
orjson==3.8.8 ; python_version >= "3.8" and python_version < "3.11"
|
86 |
packaging==23.0 ; python_version < "3.11" and python_version >= "3.8"
|
87 |
pandas==1.5.3 ; python_version >= "3.8" and python_version < "3.11"
|
@@ -89,12 +75,7 @@ pettingzoo==1.22.4 ; python_version >= "3.8" and python_version < "3.11"
|
|
89 |
pillow==9.4.0 ; python_version >= "3.8" and python_version < "3.11"
|
90 |
pkgutil-resolve-name==1.3.10 ; python_version >= "3.8" and python_version < "3.9"
|
91 |
platformdirs==3.2.0 ; python_version >= "3.8" and python_version < "3.11"
|
92 |
-
prometheus-client==0.16.0 ; python_version >= "3.8" and python_version < "3.11"
|
93 |
protobuf==3.17.0 ; python_version >= "3.8" and python_version < "3.11"
|
94 |
-
psutil==5.9.4 ; python_version >= "3.8" and python_version < "3.11"
|
95 |
-
py-spy==0.3.14 ; python_version >= "3.8" and python_version < "3.11"
|
96 |
-
pyasn1-modules==0.2.8 ; python_version >= "3.8" and python_version < "3.11"
|
97 |
-
pyasn1==0.4.8 ; python_version >= "3.8" and python_version < "3.11"
|
98 |
pydantic==1.10.7 ; python_version >= "3.8" and python_version < "3.11"
|
99 |
pydub==0.25.1 ; python_version >= "3.8" and python_version < "3.11"
|
100 |
pygame==2.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
@@ -106,17 +87,15 @@ python-multipart==0.0.6 ; python_version >= "3.8" and python_version < "3.11"
|
|
106 |
pytz==2023.3 ; python_version >= "3.8" and python_version < "3.11"
|
107 |
pywavelets==1.4.1 ; python_version >= "3.8" and python_version < "3.11"
|
108 |
pyyaml==6.0 ; python_version >= "3.8" and python_version < "3.11"
|
109 |
-
ray[rllib
|
110 |
requests==2.28.2 ; python_version >= "3.8" and python_version < "3.11"
|
111 |
rfc3986[idna2008]==1.5.0 ; python_version >= "3.8" and python_version < "3.11"
|
112 |
rich==13.3.3 ; python_version >= "3.8" and python_version < "3.11"
|
113 |
-
rsa==4.9 ; python_version >= "3.8" and python_version < "3.11"
|
114 |
scikit-image==0.20.0 ; python_version >= "3.8" and python_version < "3.11"
|
115 |
scipy==1.9.1 ; python_version < "3.11" and python_version >= "3.8"
|
116 |
semantic-version==2.10.0 ; python_version >= "3.8" and python_version < "3.11"
|
117 |
setuptools==67.6.1 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
118 |
six==1.16.0 ; python_version < "3.11" and python_version >= "3.8"
|
119 |
-
smart-open==6.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
120 |
sniffio==1.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
121 |
starlette==0.26.1 ; python_version >= "3.8" and python_version < "3.11"
|
122 |
sympy==1.11.1 ; python_version >= "3.8" and python_version < "3.11"
|
@@ -134,7 +113,6 @@ uc-micro-py==1.0.1 ; python_version >= "3.8" and python_version < "3.11"
|
|
134 |
urllib3==1.26.15 ; python_version >= "3.8" and python_version < "3.11"
|
135 |
uvicorn==0.21.1 ; python_version >= "3.8" and python_version < "3.11"
|
136 |
virtualenv==20.21.0 ; python_version >= "3.8" and python_version < "3.11"
|
137 |
-
wcwidth==0.2.6 ; python_version >= "3.8" and python_version < "3.11"
|
138 |
websockets==10.4 ; python_version >= "3.8" and python_version < "3.11"
|
139 |
wheel==0.40.0 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
140 |
yarl==1.8.2 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
1 |
absl-py==1.4.0 ; python_version >= "3.8" and python_version < "3.11"
|
2 |
aiofiles==23.1.0 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
3 |
aiohttp==3.8.4 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
4 |
aiosignal==1.3.1 ; python_version >= "3.8" and python_version < "3.11"
|
5 |
altair==4.2.2 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
6 |
anyio==3.6.2 ; python_version >= "3.8" and python_version < "3.11"
|
7 |
async-timeout==4.0.2 ; python_version >= "3.8" and python_version < "3.11"
|
8 |
attrs==22.2.0 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
|
|
9 |
certifi==2022.12.7 ; python_version >= "3.8" and python_version < "3.11"
|
10 |
charset-normalizer==3.1.0 ; python_version >= "3.8" and python_version < "3.11"
|
11 |
click==8.1.3 ; python_version >= "3.8" and python_version < "3.11"
|
12 |
cloudpickle==2.2.1 ; python_version >= "3.8" and python_version < "3.11"
|
13 |
cmake==3.26.1 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
14 |
colorama==0.4.6 ; python_version >= "3.8" and python_version < "3.11" and platform_system == "Windows"
|
|
|
15 |
contourpy==1.0.7 ; python_version >= "3.8" and python_version < "3.11"
|
16 |
cycler==0.11.0 ; python_version >= "3.8" and python_version < "3.11"
|
17 |
decorator==5.1.1 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
25 |
frozenlist==1.3.3 ; python_version >= "3.8" and python_version < "3.11"
|
26 |
fsspec==2023.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
27 |
gast==0.5.3 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
|
|
|
|
|
|
28 |
gradio==3.23.0 ; python_version >= "3.8" and python_version < "3.11"
|
29 |
grpcio==1.49.1 ; python_version >= "3.8" and python_version < "3.11" and sys_platform == "darwin"
|
30 |
grpcio==1.53.0 ; python_version >= "3.8" and python_version < "3.11" and sys_platform != "darwin"
|
|
|
39 |
importlib-metadata==6.1.0 ; python_version >= "3.8" and python_version < "3.10"
|
40 |
importlib-resources==5.12.0 ; python_version >= "3.8" and python_version < "3.10"
|
41 |
jinja2==3.1.2 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
42 |
jsonschema==4.17.3 ; python_version >= "3.8" and python_version < "3.11"
|
43 |
kiwisolver==1.4.4 ; python_version >= "3.8" and python_version < "3.11"
|
44 |
lazy-loader==0.2 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
66 |
nvidia-curand-cu11==10.2.10.91 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
67 |
nvidia-cusolver-cu11==11.4.0.1 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
68 |
nvidia-cusparse-cu11==11.7.4.91 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
|
|
69 |
nvidia-nccl-cu11==2.14.3 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
70 |
nvidia-nvtx-cu11==11.7.91 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
|
|
|
|
71 |
orjson==3.8.8 ; python_version >= "3.8" and python_version < "3.11"
|
72 |
packaging==23.0 ; python_version < "3.11" and python_version >= "3.8"
|
73 |
pandas==1.5.3 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
75 |
pillow==9.4.0 ; python_version >= "3.8" and python_version < "3.11"
|
76 |
pkgutil-resolve-name==1.3.10 ; python_version >= "3.8" and python_version < "3.9"
|
77 |
platformdirs==3.2.0 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
78 |
protobuf==3.17.0 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
|
|
|
|
|
|
79 |
pydantic==1.10.7 ; python_version >= "3.8" and python_version < "3.11"
|
80 |
pydub==0.25.1 ; python_version >= "3.8" and python_version < "3.11"
|
81 |
pygame==2.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
87 |
pytz==2023.3 ; python_version >= "3.8" and python_version < "3.11"
|
88 |
pywavelets==1.4.1 ; python_version >= "3.8" and python_version < "3.11"
|
89 |
pyyaml==6.0 ; python_version >= "3.8" and python_version < "3.11"
|
90 |
+
ray[rllib]==2.3.1 ; python_version >= "3.8" and python_version < "3.11"
|
91 |
requests==2.28.2 ; python_version >= "3.8" and python_version < "3.11"
|
92 |
rfc3986[idna2008]==1.5.0 ; python_version >= "3.8" and python_version < "3.11"
|
93 |
rich==13.3.3 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
94 |
scikit-image==0.20.0 ; python_version >= "3.8" and python_version < "3.11"
|
95 |
scipy==1.9.1 ; python_version < "3.11" and python_version >= "3.8"
|
96 |
semantic-version==2.10.0 ; python_version >= "3.8" and python_version < "3.11"
|
97 |
setuptools==67.6.1 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
98 |
six==1.16.0 ; python_version < "3.11" and python_version >= "3.8"
|
|
|
99 |
sniffio==1.3.0 ; python_version >= "3.8" and python_version < "3.11"
|
100 |
starlette==0.26.1 ; python_version >= "3.8" and python_version < "3.11"
|
101 |
sympy==1.11.1 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
113 |
urllib3==1.26.15 ; python_version >= "3.8" and python_version < "3.11"
|
114 |
uvicorn==0.21.1 ; python_version >= "3.8" and python_version < "3.11"
|
115 |
virtualenv==20.21.0 ; python_version >= "3.8" and python_version < "3.11"
|
|
|
116 |
websockets==10.4 ; python_version >= "3.8" and python_version < "3.11"
|
117 |
wheel==0.40.0 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version >= "3.8" and python_version < "3.11"
|
118 |
yarl==1.8.2 ; python_version >= "3.8" and python_version < "3.11"
|