sklearn.utils.testing
.mock_mldata_urlopen¶
-
class
sklearn.utils.testing.
mock_mldata_urlopen
(**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_dict itself is a dictionary of {column_name: data_array}, and ordering is a list of column_names to determine the ordering in the data set (see
fake_mldata
for details).
Methods
__call__
(urlname)Parameters: