Skip to content
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

Update task.py #1236

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions openml/tasks/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ class OpenMLTask(OpenMLBase):

Parameters
----------
task_id : Optional[int]
Refers to the unique identifier of a task.
task_type_id : TaskType
Refers to the type of task.
task_type : str
Expand All @@ -44,6 +46,15 @@ class OpenMLTask(OpenMLBase):
Refers to the data.
estimation_procedure_id: int
Refers to the type of estimates used.
estimation_procedure_type : Optional[str]
Refers to the type of estimation procedure used for the task.
estimation_parameters : Optional[Dict[str, str]]
Estimation parameters used for the task.
evaluation_measure : Optional[str]
Refers to the evaluation measure.
data_splits_url : Optional[str]
Refers to the URL of the data splits used for the task.

"""

def __init__(
Expand Down