-
-
Notifications
You must be signed in to change notification settings - Fork 144
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
Error in updating dataset description #1192
Comments
This is because the description field expects a string, and the provided value is a list of strings, try using the - micro_md = f_micro.readlines()
+ micro_md = f_micro.read() This results in the text being uploaded, you can see a preview here: https://test.openml.org/d/20 import openml
openml.config.start_using_configuration_for_example()
openml.config.datasets.edit_dataset(20, description=...) |
Thank you for the quick fix. It now leads to another issue: Between these two screenshots the content of ".md" "file is displayed. It looks like there is some encoding issue but not sure about it. Descriptions are update for one dataset "PLK" but not working for the rest. |
Not sure what you mean with that. Can you provide the problematic markdown file(s)? Either per e-mail as files or
|
Related to openml/OpenML#911.
|
Description
When a dataset description is updated, it gives the following error:
Steps/Code to Reproduce
The text was updated successfully, but these errors were encountered: