Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

setup_string of Run is not saved #1013

Copy link
Copy link
@PGijsbers

Description

@PGijsbers
Issue body actions

MWE:

import openml
from sklearn.tree import DecisionTreeClassifier

run = openml.runs.run_model_on_task(DecisionTreeClassifier(), 59)
print('Run is not yet uploaded:', run.id == None)
run.setup_string = "test.py -o --setup-string"
run.publish()
print('local run:', run.id, run.setup_string)
server_run = openml.runs.get_run(run.id)
print('server run:', server_run.id, server_run.setup_string)

current output:

Run is not yet uploaded: True
local run: 10559751 test.py -o --setup-string
server run: 10559751 None

expected output:

Run is not yet uploaded: True
local run: 10559751 test.py -o --setup-string
server run: 10559751 test.py -o --setup-string

I imagine adding the field to OpenMLRun._to_dict is enough.

@mfeurer this is just an oversight, right? I couldn't find/think of a reason as to why this would not be supported.

Reactions are currently unavailable

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    Morty Proxy This is a proxified and sanitized view of the page, visit original site.