UCI Datasets

The ml_research_toolkit.datasets.uci contains classes: - ml_research_toolkit.datasets.uci.UCI

class ml_research_toolkit.datasets.uci.UCI(enforce=False, cache='.uci', url='https://archive.ics.uci.edu/ml/datasets.php')[source]

Class for UCI datasets manager system.

get_dataset(name, enforce=None, download=True)[source]

Get dataset by given name.

Parameters
  • name (str) – Name of the dataset for downloading.

  • enforce (bool) – Enforce rewriting all metadata in the cache or use cached data. Default None: use initial value.

  • download (bool) – Download dataset or not. If False and dataset is not presented than return None.

get_meta(enforce=None)[source]

Get meta infromation about all datasets in the site.

Parameters

enforce (bool) – Enforce rewriting all metadata in the cache or use cached data. Default None: use initial value.