Skip to content
Merged
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
7 changes: 7 additions & 0 deletions openml/tasks/split.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,18 @@ class Split(NamedTuple):
class OpenMLSplit:
"""OpenML Split object.

This class manages train-test splits for a dataset across multiple
repetitions, folds, and samples.

Parameters
----------
name : int or str
The name or ID of the split.
description : str
A description of the split.
split : dict
A dictionary containing the splits organized by repetition, fold,
and sample.
"""

def __init__(
Expand Down
Loading