[tune] Readable trial progress output (#5822)

* Cleaner, tabulated progress output.

* Minor HTML changes, trial ID instead of name

* Revert basic variant changes

* Cleanup, address richard's comments, add progress_reporter.py

* Add tabulate dependency

* Added more info to table, auto-hide columns with no data.

* lint

* Address comments

* Replace experiment tag w/ trial ID

* Fixed tests.

* Fixed test

* Added requirement

* Fix formatting
This commit is contained in:
Ujval Misra
2019-10-08 16:38:39 -07:00
committed by Richard Liaw
parent 24b79fd0a6
commit a851d7eb87
13 changed files with 231 additions and 163 deletions
+3 -1
View File
@@ -73,11 +73,13 @@ 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"
"pyyaml", "gym[atari]", "opencv-python-headless", "lz4", "scipy",
"tabulate"
],
"debug": ["psutil", "setproctitle", "py-spy >= 0.2.0"],
"dashboard": ["aiohttp", "psutil", "setproctitle"],
"serve": ["uvicorn", "pygments", "werkzeug", "flask", "pandas"],
"tune": ["tabulate"],
}