Skip to content

eds_scikit.datasets

list_all_synthetics

list_all_synthetics() -> List[str]

Helper to list all available synthetic datasets

RETURNS DESCRIPTION
List[str]

List of datasets names

Source code in eds_scikit/datasets/__init__.py
57
58
59
60
61
62
63
64
65
66
def list_all_synthetics() -> List[str]:
    """
    Helper to list all available synthetic datasets

    Returns
    -------
    List[str]
        List of datasets names
    """
    return [func.__name__ for func in __all__]