We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I followed the directions installing the tutorial.
>>> ray.__version__ '0.8.7'
File: exercise01-Introduction.ipynb
exercise01-Introduction.ipynb
When running: ray.init(num_cpus=4, ignore_reinit_error=True, include_webui=False)
ray.init(num_cpus=4, ignore_reinit_error=True, include_webui=False)
Error:
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-9-d0a3ab5afed5> in <module> ----> 1 ray.init(num_cpus=4, ignore_reinit_error=True, include_webui=False) TypeError: init() got an unexpected keyword argument 'include_webui'
Probably due to deprecation of that option.
The text was updated successfully, but these errors were encountered:
Fix: changed to
ray.init(num_cpus=4, ignore_reinit_error=True, include_dashboard=False)
Sorry, something went wrong.
No branches or pull requests
I followed the directions installing the tutorial.
File:
exercise01-Introduction.ipynb
When running:
ray.init(num_cpus=4, ignore_reinit_error=True, include_webui=False)
Error:
Probably due to deprecation of that option.
The text was updated successfully, but these errors were encountered: