Breaking Changes
- Local mode has changed from
ray.init(driver_mode=ray.PYTHON_MODE)
toray.init(local_mode=True)
to improve clarity.
Autoscaler and Cluster Setup
- Added many convenience commands such as
ray up
,ray attach
,ray exec
, andray rsync
to simplify launching jobs with Ray. - Added experimental support for local/on-prem clusters.
RLlib
- Added the IMPALA algorithm.
- Added the ARS algorithm.
- Added the A2C variant of A3C.
- Added support for distributional DQN.
- Made improvements to multiagent support.
- Added support for model-based rollouts and custom policies.
- Added initial set of reference Atari results.
Tune
SearchAlgorithm
s can now be used separately fromTrialScheduler
s and are found inray.tune.suggest
.- All
TrialScheduler
s have been consolidated underray.tune.schedulers
. - Minor API changes:
- For
Experiment
configuration,repeat
has been renamed tonum_samples
. - Now,
register_trainable
is handled implicitly.
- For