forked from openml/openml-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.py
More file actions
1155 lines (974 loc) · 41 KB
/
functions.py
File metadata and controls
1155 lines (974 loc) · 41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# License: BSD 3-Clause
import io
import logging
import os
import re
from typing import List, Dict, Union, Optional
import numpy as np
import arff
import pandas as pd
import xmltodict
from scipy.sparse import coo_matrix
from collections import OrderedDict
import openml.utils
import openml._api_calls
from .dataset import OpenMLDataset
from ..exceptions import (
OpenMLCacheException,
OpenMLHashException,
OpenMLServerException,
OpenMLPrivateDatasetError,
)
from ..utils import (
_create_cache_directory,
_remove_cache_dir_for_id,
_create_cache_directory_for_id,
)
DATASETS_CACHE_DIR_NAME = "datasets"
logger = logging.getLogger(__name__)
############################################################################
# Local getters/accessors to the cache directory
def _list_cached_datasets():
""" Return list with ids of all cached datasets.
Returns
-------
list
List with IDs of all cached datasets.
"""
datasets = []
dataset_cache_dir = _create_cache_directory(DATASETS_CACHE_DIR_NAME)
directory_content = os.listdir(dataset_cache_dir)
directory_content.sort()
# Find all dataset ids for which we have downloaded the dataset
# description
for directory_name in directory_content:
# First check if the directory name could be an OpenML dataset id
if not re.match(r"[0-9]*", directory_name):
continue
dataset_id = int(directory_name)
directory_name = os.path.join(dataset_cache_dir, directory_name)
dataset_directory_content = os.listdir(directory_name)
if (
"dataset.arff" in dataset_directory_content
and "description.xml" in dataset_directory_content
):
if dataset_id not in datasets:
datasets.append(dataset_id)
datasets.sort()
return datasets
def _get_cached_datasets():
"""Searches for all OpenML datasets in the OpenML cache dir.
Return a dictionary which maps dataset ids to dataset objects"""
dataset_list = _list_cached_datasets()
datasets = OrderedDict()
for dataset_id in dataset_list:
datasets[dataset_id] = _get_cached_dataset(dataset_id)
return datasets
def _get_cached_dataset(dataset_id: int) -> OpenMLDataset:
"""Get cached dataset for ID.
Returns
-------
OpenMLDataset
"""
description = _get_cached_dataset_description(dataset_id)
arff_file = _get_cached_dataset_arff(dataset_id)
features = _get_cached_dataset_features(dataset_id)
qualities = _get_cached_dataset_qualities(dataset_id)
dataset = _create_dataset_from_description(description, features, qualities, arff_file)
return dataset
def _get_cached_dataset_description(dataset_id):
did_cache_dir = _create_cache_directory_for_id(DATASETS_CACHE_DIR_NAME, dataset_id,)
description_file = os.path.join(did_cache_dir, "description.xml")
try:
with io.open(description_file, encoding="utf8") as fh:
dataset_xml = fh.read()
return xmltodict.parse(dataset_xml)["oml:data_set_description"]
except (IOError, OSError):
raise OpenMLCacheException(
"Dataset description for dataset id %d not " "cached" % dataset_id
)
def _get_cached_dataset_features(dataset_id):
did_cache_dir = _create_cache_directory_for_id(DATASETS_CACHE_DIR_NAME, dataset_id,)
features_file = os.path.join(did_cache_dir, "features.xml")
try:
return _load_features_from_file(features_file)
except (IOError, OSError):
raise OpenMLCacheException("Dataset features for dataset id %d not " "cached" % dataset_id)
def _get_cached_dataset_qualities(dataset_id):
did_cache_dir = _create_cache_directory_for_id(DATASETS_CACHE_DIR_NAME, dataset_id,)
qualities_file = os.path.join(did_cache_dir, "qualities.xml")
try:
with io.open(qualities_file, encoding="utf8") as fh:
qualities_xml = fh.read()
qualities_dict = xmltodict.parse(qualities_xml)
return qualities_dict["oml:data_qualities"]["oml:quality"]
except (IOError, OSError):
raise OpenMLCacheException("Dataset qualities for dataset id %d not " "cached" % dataset_id)
def _get_cached_dataset_arff(dataset_id):
did_cache_dir = _create_cache_directory_for_id(DATASETS_CACHE_DIR_NAME, dataset_id,)
output_file = os.path.join(did_cache_dir, "dataset.arff")
try:
with io.open(output_file, encoding="utf8"):
pass
return output_file
except (OSError, IOError):
raise OpenMLCacheException("ARFF file for dataset id %d not " "cached" % dataset_id)
def _get_cache_directory(dataset: OpenMLDataset) -> str:
""" Return the cache directory of the OpenMLDataset """
return _create_cache_directory_for_id(DATASETS_CACHE_DIR_NAME, dataset.dataset_id)
def list_qualities() -> List[str]:
""" Return list of data qualities available.
The function performs an API call to retrieve the entire list of
data qualities that are computed on the datasets uploaded.
Returns
-------
list
"""
api_call = "data/qualities/list"
xml_string = openml._api_calls._perform_api_call(api_call, "get")
qualities = xmltodict.parse(xml_string, force_list=("oml:quality"))
# Minimalistic check if the XML is useful
if "oml:data_qualities_list" not in qualities:
raise ValueError("Error in return XML, does not contain " '"oml:data_qualities_list"')
if not isinstance(qualities["oml:data_qualities_list"]["oml:quality"], list):
raise TypeError("Error in return XML, does not contain " '"oml:quality" as a list')
qualities = qualities["oml:data_qualities_list"]["oml:quality"]
return qualities
def list_datasets(
data_id: Optional[List[int]] = None,
offset: Optional[int] = None,
size: Optional[int] = None,
status: Optional[str] = None,
tag: Optional[str] = None,
output_format: str = "dict",
**kwargs
) -> Union[Dict, pd.DataFrame]:
"""
Return a list of all dataset which are on OpenML.
Supports large amount of results.
Parameters
----------
data_id : list, optional
A list of data ids, to specify which datasets should be
listed
offset : int, optional
The number of datasets to skip, starting from the first.
size : int, optional
The maximum number of datasets to show.
status : str, optional
Should be {active, in_preparation, deactivated}. By
default active datasets are returned, but also datasets
from another status can be requested.
tag : str, optional
output_format: str, optional (default='dict')
The parameter decides the format of the output.
- If 'dict' the output is a dict of dict
- If 'dataframe' the output is a pandas DataFrame
kwargs : dict, optional
Legal filter operators (keys in the dict):
data_name, data_version, number_instances,
number_features, number_classes, number_missing_values.
Returns
-------
datasets : dict of dicts, or dataframe
- If output_format='dict'
A mapping from dataset ID to dict.
Every dataset is represented by a dictionary containing
the following information:
- dataset id
- name
- format
- status
If qualities are calculated for the dataset, some of
these are also returned.
- If output_format='dataframe'
Each row maps to a dataset
Each column contains the following information:
- dataset id
- name
- format
- status
If qualities are calculated for the dataset, some of
these are also included as columns.
"""
if output_format not in ["dataframe", "dict"]:
raise ValueError(
"Invalid output format selected. " "Only 'dict' or 'dataframe' applicable."
)
return openml.utils._list_all(
data_id=data_id,
output_format=output_format,
listing_call=_list_datasets,
offset=offset,
size=size,
status=status,
tag=tag,
**kwargs
)
def _list_datasets(data_id: Optional[List] = None, output_format="dict", **kwargs):
"""
Perform api call to return a list of all datasets.
Parameters
----------
The arguments that are lists are separated from the single value
ones which are put into the kwargs.
display_errors is also separated from the kwargs since it has a
default value.
data_id : list, optional
output_format: str, optional (default='dict')
The parameter decides the format of the output.
- If 'dict' the output is a dict of dict
- If 'dataframe' the output is a pandas DataFrame
kwargs : dict, optional
Legal filter operators (keys in the dict):
tag, status, limit, offset, data_name, data_version, number_instances,
number_features, number_classes, number_missing_values.
Returns
-------
datasets : dict of dicts, or dataframe
"""
api_call = "data/list"
if kwargs is not None:
for operator, value in kwargs.items():
api_call += "/%s/%s" % (operator, value)
if data_id is not None:
api_call += "/data_id/%s" % ",".join([str(int(i)) for i in data_id])
return __list_datasets(api_call=api_call, output_format=output_format)
def __list_datasets(api_call, output_format="dict"):
xml_string = openml._api_calls._perform_api_call(api_call, "get")
datasets_dict = xmltodict.parse(xml_string, force_list=("oml:dataset",))
# Minimalistic check if the XML is useful
assert type(datasets_dict["oml:data"]["oml:dataset"]) == list, type(datasets_dict["oml:data"])
assert datasets_dict["oml:data"]["@xmlns:oml"] == "http://openml.org/openml", datasets_dict[
"oml:data"
]["@xmlns:oml"]
datasets = dict()
for dataset_ in datasets_dict["oml:data"]["oml:dataset"]:
ignore_attribute = ["oml:file_id", "oml:quality"]
dataset = {
k.replace("oml:", ""): v for (k, v) in dataset_.items() if k not in ignore_attribute
}
dataset["did"] = int(dataset["did"])
dataset["version"] = int(dataset["version"])
# The number of qualities can range from 0 to infinity
for quality in dataset_.get("oml:quality", list()):
try:
dataset[quality["@name"]] = int(quality["#text"])
except ValueError:
dataset[quality["@name"]] = float(quality["#text"])
datasets[dataset["did"]] = dataset
if output_format == "dataframe":
datasets = pd.DataFrame.from_dict(datasets, orient="index")
return datasets
def _load_features_from_file(features_file: str) -> Dict:
with io.open(features_file, encoding="utf8") as fh:
features_xml = fh.read()
xml_dict = xmltodict.parse(features_xml, force_list=("oml:feature", "oml:nominal_value"))
return xml_dict["oml:data_features"]
def check_datasets_active(dataset_ids: List[int]) -> Dict[int, bool]:
"""
Check if the dataset ids provided are active.
Parameters
----------
dataset_ids : List[int]
A list of integers representing dataset ids.
Returns
-------
dict
A dictionary with items {did: bool}
"""
dataset_list = list_datasets(status="all")
active = {}
for did in dataset_ids:
dataset = dataset_list.get(did, None)
if dataset is None:
raise ValueError("Could not find dataset {} in OpenML dataset list.".format(did))
else:
active[did] = dataset["status"] == "active"
return active
def _name_to_id(
dataset_name: str, version: Optional[int] = None, error_if_multiple: bool = False
) -> int:
""" Attempt to find the dataset id of the dataset with the given name.
If multiple datasets with the name exist, and ``error_if_multiple`` is ``False``,
then return the least recent still active dataset.
Raises an error if no dataset with the name is found.
Raises an error if a version is specified but it could not be found.
Parameters
----------
dataset_name : str
The name of the dataset for which to find its id.
version : int
Version to retrieve. If not specified, the oldest active version is returned.
error_if_multiple : bool (default=False)
If `False`, if multiple datasets match, return the least recent active dataset.
If `True`, if multiple datasets match, raise an error.
Returns
-------
int
The id of the dataset.
"""
status = None if version is not None else "active"
candidates = list_datasets(data_name=dataset_name, status=status, data_version=version)
if error_if_multiple and len(candidates) > 1:
raise ValueError("Multiple active datasets exist with name {}".format(dataset_name))
if len(candidates) == 0:
no_dataset_for_name = "No active datasets exist with name {}".format(dataset_name)
and_version = " and version {}".format(version) if version is not None else ""
raise RuntimeError(no_dataset_for_name + and_version)
# Dataset ids are chronological so we can just sort based on ids (instead of version)
return sorted(candidates)[0]
def get_datasets(
dataset_ids: List[Union[str, int]], download_data: bool = True,
) -> List[OpenMLDataset]:
"""Download datasets.
This function iterates :meth:`openml.datasets.get_dataset`.
Parameters
----------
dataset_ids : iterable
Integers or strings representing dataset ids or dataset names.
If dataset names are specified, the least recent still active dataset version is returned.
download_data : bool, optional
If True, also download the data file. Beware that some datasets are large and it might
make the operation noticeably slower. Metadata is also still retrieved.
If False, create the OpenMLDataset and only populate it with the metadata.
The data may later be retrieved through the `OpenMLDataset.get_data` method.
Returns
-------
datasets : list of datasets
A list of dataset objects.
"""
datasets = []
for dataset_id in dataset_ids:
datasets.append(get_dataset(dataset_id, download_data))
return datasets
@openml.utils.thread_safe_if_oslo_installed
def get_dataset(
dataset_id: Union[int, str],
download_data: bool = True,
version: int = None,
error_if_multiple: bool = False,
cache_format: str = "pickle",
) -> OpenMLDataset:
""" Download the OpenML dataset representation, optionally also download actual data file.
This function is thread/multiprocessing safe.
This function uses caching. A check will be performed to determine if the information has
previously been downloaded, and if so be loaded from disk instead of retrieved from the server.
If dataset is retrieved by name, a version may be specified.
If no version is specified and multiple versions of the dataset exist,
the earliest version of the dataset that is still active will be returned.
If no version is specified, multiple versions of the dataset exist and
``exception_if_multiple`` is set to ``True``, this function will raise an exception.
Parameters
----------
dataset_id : int or str
Dataset ID of the dataset to download
download_data : bool, optional (default=True)
If True, also download the data file. Beware that some datasets are large and it might
make the operation noticeably slower. Metadata is also still retrieved.
If False, create the OpenMLDataset and only populate it with the metadata.
The data may later be retrieved through the `OpenMLDataset.get_data` method.
version : int, optional (default=None)
Specifies the version if `dataset_id` is specified by name.
If no version is specified, retrieve the least recent still active version.
error_if_multiple : bool, optional (default=False)
If ``True`` raise an error if multiple datasets are found with matching criteria.
cache_format : str, optional (default='pickle')
Format for caching the dataset - may be feather or pickle
Note that the default 'pickle' option may load slower than feather when
no.of.rows is very high.
Returns
-------
dataset : :class:`openml.OpenMLDataset`
The downloaded dataset.
"""
if cache_format not in ["feather", "pickle"]:
raise ValueError(
"cache_format must be one of 'feather' or 'pickle. "
"Invalid format specified: {}".format(cache_format)
)
if isinstance(dataset_id, str):
try:
dataset_id = int(dataset_id)
except ValueError:
dataset_id = _name_to_id(dataset_id, version, error_if_multiple) # type: ignore
elif not isinstance(dataset_id, int):
raise TypeError(
"`dataset_id` must be one of `str` or `int`, not {}.".format(type(dataset_id))
)
did_cache_dir = _create_cache_directory_for_id(DATASETS_CACHE_DIR_NAME, dataset_id,)
try:
remove_dataset_cache = True
description = _get_dataset_description(did_cache_dir, dataset_id)
features = _get_dataset_features(did_cache_dir, dataset_id)
try:
qualities = _get_dataset_qualities(did_cache_dir, dataset_id)
except OpenMLServerException as e:
if e.code == 362 and str(e) == "No qualities found - None":
logger.warning("No qualities found for dataset {}".format(dataset_id))
qualities = None
else:
raise
arff_file = _get_dataset_arff(description) if download_data else None
remove_dataset_cache = False
except OpenMLServerException as e:
# if there was an exception,
# check if the user had access to the dataset
if e.code == 112:
raise OpenMLPrivateDatasetError(e.message) from None
else:
raise e
finally:
if remove_dataset_cache:
_remove_cache_dir_for_id(DATASETS_CACHE_DIR_NAME, did_cache_dir)
dataset = _create_dataset_from_description(
description, features, qualities, arff_file, cache_format
)
return dataset
def attributes_arff_from_df(df):
""" Describe attributes of the dataframe according to ARFF specification.
Parameters
----------
df : DataFrame, shape (n_samples, n_features)
The dataframe containing the data set.
Returns
-------
attributes_arff : str
The data set attributes as required by the ARFF format.
"""
PD_DTYPES_TO_ARFF_DTYPE = {"integer": "INTEGER", "floating": "REAL", "string": "STRING"}
attributes_arff = []
if not all([isinstance(column_name, str) for column_name in df.columns]):
logger.warning("Converting non-str column names to str.")
df.columns = [str(column_name) for column_name in df.columns]
for column_name in df:
# skipna=True does not infer properly the dtype. The NA values are
# dropped before the inference instead.
column_dtype = pd.api.types.infer_dtype(df[column_name].dropna(), skipna=False)
if column_dtype == "categorical":
# for categorical feature, arff expects a list string. However, a
# categorical column can contain mixed type and should therefore
# raise an error asking to convert all entries to string.
categories = df[column_name].cat.categories
categories_dtype = pd.api.types.infer_dtype(categories)
if categories_dtype not in ("string", "unicode"):
raise ValueError(
"The column '{}' of the dataframe is of "
"'category' dtype. Therefore, all values in "
"this columns should be string. Please "
"convert the entries which are not string. "
"Got {} dtype in this column.".format(column_name, categories_dtype)
)
attributes_arff.append((column_name, categories.tolist()))
elif column_dtype == "boolean":
# boolean are encoded as categorical.
attributes_arff.append((column_name, ["True", "False"]))
elif column_dtype in PD_DTYPES_TO_ARFF_DTYPE.keys():
attributes_arff.append((column_name, PD_DTYPES_TO_ARFF_DTYPE[column_dtype]))
else:
raise ValueError(
"The dtype '{}' of the column '{}' is not "
"currently supported by liac-arff. Supported "
"dtypes are categorical, string, integer, "
"floating, and boolean.".format(column_dtype, column_name)
)
return attributes_arff
def create_dataset(
name,
description,
creator,
contributor,
collection_date,
language,
licence,
attributes,
data,
default_target_attribute,
ignore_attribute,
citation,
row_id_attribute=None,
original_data_url=None,
paper_url=None,
update_comment=None,
version_label=None,
):
"""Create a dataset.
This function creates an OpenMLDataset object.
The OpenMLDataset object contains information related to the dataset
and the actual data file.
Parameters
----------
name : str
Name of the dataset.
description : str
Description of the dataset.
creator : str
The person who created the dataset.
contributor : str
People who contributed to the current version of the dataset.
collection_date : str
The date the data was originally collected, given by the uploader.
language : str
Language in which the data is represented.
Starts with 1 upper case letter, rest lower case, e.g. 'English'.
licence : str
License of the data.
attributes : list, dict, or 'auto'
A list of tuples. Each tuple consists of the attribute name and type.
If passing a pandas DataFrame, the attributes can be automatically
inferred by passing ``'auto'``. Specific attributes can be manually
specified by a passing a dictionary where the key is the name of the
attribute and the value is the data type of the attribute.
data : ndarray, list, dataframe, coo_matrix, shape (n_samples, n_features)
An array that contains both the attributes and the targets. When
providing a dataframe, the attribute names and type can be inferred by
passing ``attributes='auto'``.
The target feature is indicated as meta-data of the dataset.
default_target_attribute : str
The default target attribute, if it exists.
Can have multiple values, comma separated.
ignore_attribute : str | list
Attributes that should be excluded in modelling,
such as identifiers and indexes.
citation : str
Reference(s) that should be cited when building on this data.
version_label : str, optional
Version label provided by user.
Can be a date, hash, or some other type of id.
row_id_attribute : str, optional
The attribute that represents the row-id column, if present in the
dataset. If ``data`` is a dataframe and ``row_id_attribute`` is not
specified, the index of the dataframe will be used as the
``row_id_attribute``. If the name of the index is ``None``, it will
be discarded.
.. versionadded: 0.8
Inference of ``row_id_attribute`` from a dataframe.
original_data_url : str, optional
For derived data, the url to the original dataset.
paper_url : str, optional
Link to a paper describing the dataset.
update_comment : str, optional
An explanation for when the dataset is uploaded.
Returns
-------
class:`openml.OpenMLDataset`
Dataset description."""
if isinstance(data, pd.DataFrame):
# infer the row id from the index of the dataset
if row_id_attribute is None:
row_id_attribute = data.index.name
# When calling data.values, the index will be skipped.
# We need to reset the index such that it is part of the data.
if data.index.name is not None:
data = data.reset_index()
if attributes == "auto" or isinstance(attributes, dict):
if not hasattr(data, "columns"):
raise ValueError(
"Automatically inferring attributes requires "
"a pandas DataFrame. A {!r} was given instead.".format(data)
)
# infer the type of data for each column of the DataFrame
attributes_ = attributes_arff_from_df(data)
if isinstance(attributes, dict):
# override the attributes which was specified by the user
for attr_idx in range(len(attributes_)):
attr_name = attributes_[attr_idx][0]
if attr_name in attributes.keys():
attributes_[attr_idx] = (attr_name, attributes[attr_name])
else:
attributes_ = attributes
if row_id_attribute is not None:
is_row_id_an_attribute = any([attr[0] == row_id_attribute for attr in attributes_])
if not is_row_id_an_attribute:
raise ValueError(
"'row_id_attribute' should be one of the data attribute. "
" Got '{}' while candidates are {}.".format(
row_id_attribute, [attr[0] for attr in attributes_]
)
)
if hasattr(data, "columns"):
if all(isinstance(dtype, pd.SparseDtype) for dtype in data.dtypes):
data = data.sparse.to_coo()
# liac-arff only support COO matrices with sorted rows
row_idx_sorted = np.argsort(data.row)
data.row = data.row[row_idx_sorted]
data.col = data.col[row_idx_sorted]
data.data = data.data[row_idx_sorted]
else:
data = data.values
if isinstance(data, (list, np.ndarray)):
if isinstance(data[0], (list, np.ndarray)):
data_format = "arff"
elif isinstance(data[0], dict):
data_format = "sparse_arff"
else:
raise ValueError(
"When giving a list or a numpy.ndarray, "
"they should contain a list/ numpy.ndarray "
"for dense data or a dictionary for sparse "
"data. Got {!r} instead.".format(data[0])
)
elif isinstance(data, coo_matrix):
data_format = "sparse_arff"
else:
raise ValueError(
"When giving a list or a numpy.ndarray, "
"they should contain a list/ numpy.ndarray "
"for dense data or a dictionary for sparse "
"data. Got {!r} instead.".format(data[0])
)
arff_object = {
"relation": name,
"description": description,
"attributes": attributes_,
"data": data,
}
# serializes the ARFF dataset object and returns a string
arff_dataset = arff.dumps(arff_object)
try:
# check if ARFF is valid
decoder = arff.ArffDecoder()
return_type = arff.COO if data_format == "sparse_arff" else arff.DENSE
decoder.decode(arff_dataset, encode_nominal=True, return_type=return_type)
except arff.ArffException:
raise ValueError(
"The arguments you have provided \
do not construct a valid ARFF file"
)
return OpenMLDataset(
name=name,
description=description,
data_format=data_format,
creator=creator,
contributor=contributor,
collection_date=collection_date,
language=language,
licence=licence,
default_target_attribute=default_target_attribute,
row_id_attribute=row_id_attribute,
ignore_attribute=ignore_attribute,
citation=citation,
version_label=version_label,
original_data_url=original_data_url,
paper_url=paper_url,
update_comment=update_comment,
dataset=arff_dataset,
)
def status_update(data_id, status):
"""
Updates the status of a dataset to either 'active' or 'deactivated'.
Please see the OpenML API documentation for a description of the status
and all legal status transitions:
https://docs.openml.org/#dataset-status
Parameters
----------
data_id : int
The data id of the dataset
status : str,
'active' or 'deactivated'
"""
legal_status = {"active", "deactivated"}
if status not in legal_status:
raise ValueError("Illegal status value. " "Legal values: %s" % legal_status)
data = {"data_id": data_id, "status": status}
result_xml = openml._api_calls._perform_api_call("data/status/update", "post", data=data)
result = xmltodict.parse(result_xml)
server_data_id = result["oml:data_status_update"]["oml:id"]
server_status = result["oml:data_status_update"]["oml:status"]
if status != server_status or int(data_id) != int(server_data_id):
# This should never happen
raise ValueError("Data id/status does not collide")
def edit_dataset(
data_id,
description=None,
creator=None,
contributor=None,
collection_date=None,
language=None,
default_target_attribute=None,
ignore_attribute=None,
citation=None,
row_id_attribute=None,
original_data_url=None,
paper_url=None,
) -> int:
"""
Edits an OpenMLDataset.
Specify atleast one field to edit, apart from data_id
- For certain fields, a new dataset version is created : attributes, data,
default_target_attribute, ignore_attribute, row_id_attribute.
- For other fields, the uploader can edit the exisiting version.
Noone except the uploader can edit the exisitng version.
Parameters
----------
data_id : int
ID of the dataset.
description : str
Description of the dataset.
creator : str
The person who created the dataset.
contributor : str
People who contributed to the current version of the dataset.
collection_date : str
The date the data was originally collected, given by the uploader.
language : str
Language in which the data is represented.
Starts with 1 upper case letter, rest lower case, e.g. 'English'.
default_target_attribute : str
The default target attribute, if it exists.
Can have multiple values, comma separated.
ignore_attribute : str | list
Attributes that should be excluded in modelling,
such as identifiers and indexes.
citation : str
Reference(s) that should be cited when building on this data.
row_id_attribute : str, optional
The attribute that represents the row-id column, if present in the
dataset. If ``data`` is a dataframe and ``row_id_attribute`` is not
specified, the index of the dataframe will be used as the
``row_id_attribute``. If the name of the index is ``None``, it will
be discarded.
.. versionadded: 0.8
Inference of ``row_id_attribute`` from a dataframe.
original_data_url : str, optional
For derived data, the url to the original dataset.
paper_url : str, optional
Link to a paper describing the dataset.
Returns
-------
data_id of the existing edited version or the new version created and published"""
if not isinstance(data_id, int):
raise TypeError("`data_id` must be of type `int`, not {}.".format(type(data_id)))
# compose data edit parameters as xml
form_data = {"data_id": data_id}
xml = OrderedDict() # type: 'OrderedDict[str, OrderedDict]'
xml["oml:data_edit_parameters"] = OrderedDict()
xml["oml:data_edit_parameters"]["@xmlns:oml"] = "http://openml.org/openml"
xml["oml:data_edit_parameters"]["oml:description"] = description
xml["oml:data_edit_parameters"]["oml:creator"] = creator
xml["oml:data_edit_parameters"]["oml:contributor"] = contributor
xml["oml:data_edit_parameters"]["oml:collection_date"] = collection_date
xml["oml:data_edit_parameters"]["oml:language"] = language
xml["oml:data_edit_parameters"]["oml:default_target_attribute"] = default_target_attribute
xml["oml:data_edit_parameters"]["oml:row_id_attribute"] = row_id_attribute
xml["oml:data_edit_parameters"]["oml:ignore_attribute"] = ignore_attribute
xml["oml:data_edit_parameters"]["oml:citation"] = citation
xml["oml:data_edit_parameters"]["oml:original_data_url"] = original_data_url
xml["oml:data_edit_parameters"]["oml:paper_url"] = paper_url
# delete None inputs
for k in list(xml["oml:data_edit_parameters"]):
if not xml["oml:data_edit_parameters"][k]:
del xml["oml:data_edit_parameters"][k]
file_elements = {"edit_parameters": ("description.xml", xmltodict.unparse(xml))}
result_xml = openml._api_calls._perform_api_call(
"data/edit", "post", data=form_data, file_elements=file_elements
)
result = xmltodict.parse(result_xml)
data_id = result["oml:data_edit"]["oml:id"]
return int(data_id)
def _get_dataset_description(did_cache_dir, dataset_id):
"""Get the dataset description as xml dictionary.
This function is NOT thread/multiprocessing safe.
Parameters
----------
did_cache_dir : str
Cache subdirectory for this dataset.
dataset_id : int
Dataset ID
Returns
-------
dict
XML Dataset description parsed to a dict.
"""
# TODO implement a cache for this that invalidates itself after some time
# This can be saved on disk, but cannot be cached properly, because
# it contains the information on whether a dataset is active.
description_file = os.path.join(did_cache_dir, "description.xml")
try:
return _get_cached_dataset_description(dataset_id)
except OpenMLCacheException:
url_extension = "data/{}".format(dataset_id)
dataset_xml = openml._api_calls._perform_api_call(url_extension, "get")
with io.open(description_file, "w", encoding="utf8") as fh:
fh.write(dataset_xml)
description = xmltodict.parse(dataset_xml)["oml:data_set_description"]
return description
def _get_dataset_arff(description: Union[Dict, OpenMLDataset], cache_directory: str = None) -> str:
""" Return the path to the local arff file of the dataset. If is not cached, it is downloaded.
Checks if the file is in the cache, if yes, return the path to the file.
If not, downloads the file and caches it, then returns the file path.
The cache directory is generated based on dataset information, but can also be specified.
This function is NOT thread/multiprocessing safe.
Parameters
----------
description : dictionary or OpenMLDataset
Either a dataset description as dict or OpenMLDataset.
cache_directory: str, optional (default=None)
Folder to store the arff file in.
If None, use the default cache directory for the dataset.
Returns
-------
output_filename : string
Location of ARFF file.
"""
if isinstance(description, dict):
md5_checksum_fixture = description.get("oml:md5_checksum")
url = description["oml:url"]
did = description.get("oml:id")
elif isinstance(description, OpenMLDataset):
md5_checksum_fixture = description.md5_checksum
url = description.url
did = description.dataset_id
else:
raise TypeError("`description` should be either OpenMLDataset or Dict.")
if cache_directory is None:
cache_directory = _create_cache_directory_for_id(DATASETS_CACHE_DIR_NAME, did)
output_file_path = os.path.join(cache_directory, "dataset.arff")
try:
openml._api_calls._download_text_file(
source=url, output_path=output_file_path, md5_checksum=md5_checksum_fixture
)
except OpenMLHashException as e:
additional_info = " Raised when downloading dataset {}.".format(did)
e.args = (e.args[0] + additional_info,)
raise
return output_file_path
def _get_dataset_features(did_cache_dir, dataset_id):
"""API call to get dataset features (cached)
Features are feature descriptions for each column.
(name, index, categorical, ...)
This function is NOT thread/multiprocessing safe.
Parameters
----------
did_cache_dir : str
Cache subdirectory for this dataset