openml.setups.list_setups¶
-
openml.setups.list_setups(offset: Union[int, NoneType] = None, size: Union[int, NoneType] = None, flow: Union[int, NoneType] = None, tag: Union[str, NoneType] = None, setup: Union[List, NoneType] = None, output_format: str = 'object') → Union[Dict, pandas.core.frame.DataFrame]¶ List all setups matching all of the given filters.
- Parameters
- offsetint, optional
- sizeint, optional
- flowint, optional
- tagstr, optional
- setuplist(int), optional
- output_format: str, optional (default=’object’)
The parameter decides the format of the output. - If ‘object’ the output is a dict of OpenMLSetup objects - If ‘dict’ the output is a dict of dict - If ‘dataframe’ the output is a pandas DataFrame
- Returns
- dict or dataframe