mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 18:44:07 +08:00
[tune] Default to TensorboardX and include in requirements. (#6836)
This commit is contained in:
+9
-5
@@ -72,16 +72,20 @@ if "RAY_USE_NEW_GCS" in os.environ and os.environ["RAY_USE_NEW_GCS"] == "on":
|
||||
]
|
||||
|
||||
extras = {
|
||||
"rllib": [
|
||||
"pyyaml", "gym[atari]", "opencv-python-headless", "lz4", "scipy",
|
||||
"tabulate"
|
||||
],
|
||||
"debug": ["psutil", "setproctitle", "py-spy >= 0.2.0"],
|
||||
"dashboard": ["aiohttp", "google", "grpcio", "psutil", "setproctitle"],
|
||||
"serve": ["uvicorn", "pygments", "werkzeug", "flask", "pandas", "blist"],
|
||||
"tune": ["tabulate"],
|
||||
"tune": ["tabulate", "tensorboardX"],
|
||||
}
|
||||
|
||||
extras["rllib"] = extras["tune"] + [
|
||||
"pyyaml",
|
||||
"gym[atari]",
|
||||
"opencv-python-headless",
|
||||
"lz4",
|
||||
"scipy",
|
||||
]
|
||||
|
||||
extras["all"] = list(set(chain.from_iterable(extras.values())))
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user