-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[local mode] Actors are not handled correctly #5715
Comments
cc @edoakes |
I'll take a look into this. |
I get a similar error in this test case. import ray
from ray import tune
config = {"env": "CartPole-v1"}
ray.init(local_mode=True)
tune.run("PPO", config=config)
|
I'm getting the same error with:
With the following Traceback:
|
I'm a bit late as I can see a PR in progress, but I was able to fix this local mode issue by using Ray 0.7.3, seems to be introduced in 0.7.4 |
Still present in 0.7.5. |
Sorry this took so long, but it will be fixed in the next release (see the above PR). For now, if you rely heavily on local mode I would suggest using 0.7.3. |
My problem is that I'm using the MADDPG in the contrib section of rllib, which is not available in ray version 0.7.3. |
@nicofirst1 one option is to build Ray from source off of the latest master. You can follow these instructions to do so: 0.7.6 will contain the fix and should be released in the coming weeks. |
If you're trying to use the latest version of Ray, you can also just pip install the latest version by following the instructions in https://ray.readthedocs.io/en/latest/installation.html#latest-snapshots-nightlies. |
The below fails with:
The text was updated successfully, but these errors were encountered: