mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 06:47:13 +08:00
a7d544424c
* init for exposing external interface * revisions * http server * small * simplify * ui * fixes * test * nit * nit * merge * untested * nits * nit * init tests * tests * more tests * nit * fix hyperband * cleanup * nits * good stuff * cleanup * comments and need to test * nit * notebook * testing * test and expose server * server_tests * docs * periods * fix tests * committing test * fi
14 lines
298 B
Python
14 lines
298 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
|
|
class TuneError(Exception):
|
|
"""General error class raised by ray.tune."""
|
|
pass
|
|
|
|
|
|
class TuneManagerError(TuneError):
|
|
"""Error raised in operating the Tune Manager."""
|
|
pass
|