sklearn.utils.testing.mock_mldata_urlopen¶
Warning
DEPRECATED
-
class
sklearn.utils.testing.mock_mldata_urlopen(*args, **kwargs)[source]¶ Object that mocks the urlopen function to fake requests to mldata.
When requesting a dataset with a name that is in mock_datasets, this object creates a fake dataset in a StringIO object and returns it. Otherwise, it raises an HTTPError.
Deprecated since version 0.20: Will be removed in version 0.22
Parameters: - mock_datasets : dict
A dictionary of {dataset_name: data_dict}, or {dataset_name: (data_dict, ordering).
data_dictitself is a dictionary of {column_name: data_array}, andorderingis a list of column_names to determine the ordering in the data set (seefake_mldatafor details).
Methods
__call__(self, urlname)Parameters: