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
The cache directory change from example did not really work for me: https://openml.github.io/openml-python/develop/examples/20_basic/introduction_tutorial.html
``
openml.config.get_cache_directory() 'mydir'
openml.config.get_cache_directory() 'oldcache'
PS: This worked for me when I used openml.config._root_cache_directory
openml.config._root_cache_directory
The text was updated successfully, but these errors were encountered:
The way the cache directory should be set changed. It should be :
openml.config.set_root_cache_directory("my/directory")
This internally sets openml.config._root_cache_directory, but it's more future proof (private variable may change in new releases without notice).
The documentation needs an update here.
Sorry, something went wrong.
No branches or pull requests
Description
The cache directory change from example did not really work for me: https://openml.github.io/openml-python/develop/examples/20_basic/introduction_tutorial.html
``
Steps/Code to Reproduce
Expected Results
Actual Results
Versions
PS: This worked for me when I used
openml.config._root_cache_directory
The text was updated successfully, but these errors were encountered: