Skip to content

base

Config

Bases: ABC

Base class for all configurations.

All configurations inherit from this class, be they stored in a file or generated on the fly.

Attributes:

Name Type Description
desc str

The description from the docstring.

_repr_content dict

The items that are displayed in the repr method.

Source code in spotPython/data/base.py
 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
class Config(abc.ABC):
    """Base class for all configurations.

    All configurations inherit from this class, be they stored in a file or generated on the fly.

    Attributes:
        desc (str): The description from the docstring.
        _repr_content (dict): The items that are displayed in the __repr__ method.
    """

    def __init__(self):
        """Initialize a Config object."""
        pass

    @property
    def desc(self) -> str:
        """Return the description from the docstring.

        Returns:
            str: The description from the docstring.

        Examples:
            >>> class MyConfig(Config):
            ...     '''My configuration class.'''
            ...     pass
            >>> MyConfig().desc
            'My configuration class.'
        """
        desc = re.split(pattern=r"\w+\n\s{4}\-{3,}", string=self.__doc__, maxsplit=0)[0]
        return inspect.cleandoc(desc)

    @property
    def _repr_content(self) -> dict:
        """The items that are displayed in the __repr__ method.

        This property can be overridden in order to modify the output of the __repr__ method.

        Returns:
            dict: A dictionary containing the items to be displayed in the __repr__ method.

        Examples:
            >>> class MyConfig(Config):
            ...     '''My configuration class.'''
            ...     pass
            >>> MyConfig()._repr_content
            {'Name': 'MyConfig'}
        """
        content = {}
        content["Name"] = self.__class__.__name__
        return content

desc: str property

Return the description from the docstring.

Returns:

Name Type Description
str str

The description from the docstring.

Examples:

>>> class MyConfig(Config):
...     '''My configuration class.'''
...     pass
>>> MyConfig().desc
'My configuration class.'

__init__()

Initialize a Config object.

Source code in spotPython/data/base.py
69
70
71
def __init__(self):
    """Initialize a Config object."""
    pass

Dataset

Bases: ABC

Base class for all datasets.

All datasets inherit from this class, be they stored in a file or generated on the fly.

Parameters:

Name Type Description Default
task str

Type of task the dataset is meant for. Should be one of: - “Regression” - “Binary classification” - “Multi-class classification” - “Multi-output binary classification” - “Multi-output regression”

required
n_features int

Number of features in the dataset.

required
n_samples int

Number of samples in the dataset.

None
n_classes int

Number of classes in the dataset, only applies to classification datasets.

None
n_outputs int

Number of outputs the target is made of, only applies to multi-output datasets.

None
sparse bool

Whether the dataset is sparse or not.

False

Attributes:

Name Type Description
desc str

The description from the docstring.

_repr_content dict

The items that are displayed in the repr method.

Source code in spotPython/data/base.py
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
class Dataset(abc.ABC):
    """Base class for all datasets.

    All datasets inherit from this class, be they stored in a file or generated on the fly.

    Args:
        task (str): Type of task the dataset is meant for. Should be one of:
            - "Regression"
            - "Binary classification"
            - "Multi-class classification"
            - "Multi-output binary classification"
            - "Multi-output regression"
        n_features (int): Number of features in the dataset.
        n_samples (int, optional): Number of samples in the dataset.
        n_classes (int, optional): Number of classes in the dataset, only applies to classification datasets.
        n_outputs (int, optional): Number of outputs the target is made of, only applies to multi-output datasets.
        sparse (bool, optional): Whether the dataset is sparse or not.

    Attributes:
        desc (str): The description from the docstring.
        _repr_content (dict): The items that are displayed in the __repr__ method.
    """

    def __init__(
        self,
        task: str,
        n_features: int,
        n_samples: Optional[int] = None,
        n_classes: Optional[int] = None,
        n_outputs: Optional[int] = None,
        sparse: bool = False,
    ):
        """Initialize a Dataset object.

        Args:
            task (str): Type of task the dataset is meant for. Should be one of:
                - "Regression"
                - "Binary classification"
                - "Multi-class classification"
                - "Multi-output binary classification"
                - "Multi-output regression"
            n_features (int): Number of features in the dataset.
            n_samples (int, optional): Number of samples in the dataset. Defaults to None.
            n_classes (int, optional): Number of classes in the dataset, only applies to classification datasets.
                Defaults to None.
            n_outputs (int, optional): Number of outputs the target is made of, only applies to multi-output datasets.
                Defaults to None.
            sparse (bool, optional): Whether the dataset is sparse or not. Defaults to False.
        """
        self.task = task
        self.n_features = n_features
        self.n_samples = n_samples
        self.n_outputs = n_outputs
        self.n_classes = n_classes
        self.sparse = sparse

    @abc.abstractmethod
    def __iter__(self):
        """Abstract method for iterating over samples in the dataset."""
        raise NotImplementedError

    def take(self, k: int) -> itertools.islice:
        """Iterate over the k samples.

        Args:
            k (int): The number of samples to iterate over.

        Returns:
            itertools.islice: An iterator over the first k samples in the dataset.

        Examples:
            >>> class MyDataset(Dataset):
            ...     def __init__(self):
            ...         super().__init__('Regression', 10)
            ...     def __iter__(self):
            ...         yield from range(10)
            >>> list(MyDataset().take(5))
            [0, 1, 2, 3, 4]
        """
        return itertools.islice(self, k)

    @property
    def desc(self) -> str:
        """Return the description from the docstring.

        Returns:
            str: The description from the docstring.

        Examples:
            >>> class MyDataset(Dataset):
            ...     '''My dataset class.'''
            ...     def __init__(self):
            ...         super().__init__('Regression', 10)
            ...     def __iter__(self):
            ...         yield from range(10)
            >>> MyDataset().desc
            'My dataset class.'
        """
        desc = re.split(pattern=r"\w+\n\s{4}\-{3,}", string=self.__doc__, maxsplit=0)[0]
        return inspect.cleandoc(desc)

    @property
    def _repr_content(self) -> dict:
        """The items that are displayed in the __repr__ method.

        This property can be overridden in order to modify the output of the __repr__ method.

        Returns:
            dict: A dictionary containing the items to be displayed in the __repr__ method.
        """

        content = {}
        content["Name"] = self.__class__.__name__
        content["Task"] = self.task
        if isinstance(self, SyntheticDataset) and self.n_samples is None:
            content["Samples"] = "∞"
        elif self.n_samples:
            content["Samples"] = f"{self.n_samples:,}"
        if self.n_features:
            content["Features"] = f"{self.n_features:,}"
        if self.n_outputs:
            content["Outputs"] = f"{self.n_outputs:,}"
        if self.n_classes:
            content["Classes"] = f"{self.n_classes:,}"
        content["Sparse"] = str(self.sparse)

        return content

    def __repr__(self):
        l_len = max(map(len, self._repr_content.keys()))
        r_len = max(map(len, self._repr_content.values()))

        out = f"{self.desc}\n\n" + "\n".join(
            k.rjust(l_len) + "  " + v.ljust(r_len) for k, v in self._repr_content.items()
        )

        if "Parameters\n    ----------" in self.__doc__:
            params = re.split(
                r"\w+\n\s{4}\-{3,}",
                re.split("Parameters\n    ----------", self.__doc__)[1],
            )[0].rstrip()
            out += f"\n\nParameters\n----------{params}"

        return out

desc: str property

Return the description from the docstring.

Returns:

Name Type Description
str str

The description from the docstring.

Examples:

>>> class MyDataset(Dataset):
...     '''My dataset class.'''
...     def __init__(self):
...         super().__init__('Regression', 10)
...     def __iter__(self):
...         yield from range(10)
>>> MyDataset().desc
'My dataset class.'

__init__(task, n_features, n_samples=None, n_classes=None, n_outputs=None, sparse=False)

Initialize a Dataset object.

Parameters:

Name Type Description Default
task str

Type of task the dataset is meant for. Should be one of: - “Regression” - “Binary classification” - “Multi-class classification” - “Multi-output binary classification” - “Multi-output regression”

required
n_features int

Number of features in the dataset.

required
n_samples int

Number of samples in the dataset. Defaults to None.

None
n_classes int

Number of classes in the dataset, only applies to classification datasets. Defaults to None.

None
n_outputs int

Number of outputs the target is made of, only applies to multi-output datasets. Defaults to None.

None
sparse bool

Whether the dataset is sparse or not. Defaults to False.

False
Source code in spotPython/data/base.py
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
def __init__(
    self,
    task: str,
    n_features: int,
    n_samples: Optional[int] = None,
    n_classes: Optional[int] = None,
    n_outputs: Optional[int] = None,
    sparse: bool = False,
):
    """Initialize a Dataset object.

    Args:
        task (str): Type of task the dataset is meant for. Should be one of:
            - "Regression"
            - "Binary classification"
            - "Multi-class classification"
            - "Multi-output binary classification"
            - "Multi-output regression"
        n_features (int): Number of features in the dataset.
        n_samples (int, optional): Number of samples in the dataset. Defaults to None.
        n_classes (int, optional): Number of classes in the dataset, only applies to classification datasets.
            Defaults to None.
        n_outputs (int, optional): Number of outputs the target is made of, only applies to multi-output datasets.
            Defaults to None.
        sparse (bool, optional): Whether the dataset is sparse or not. Defaults to False.
    """
    self.task = task
    self.n_features = n_features
    self.n_samples = n_samples
    self.n_outputs = n_outputs
    self.n_classes = n_classes
    self.sparse = sparse

__iter__() abstractmethod

Abstract method for iterating over samples in the dataset.

Source code in spotPython/data/base.py
167
168
169
170
@abc.abstractmethod
def __iter__(self):
    """Abstract method for iterating over samples in the dataset."""
    raise NotImplementedError

take(k)

Iterate over the k samples.

Parameters:

Name Type Description Default
k int

The number of samples to iterate over.

required

Returns:

Type Description
islice

itertools.islice: An iterator over the first k samples in the dataset.

Examples:

>>> class MyDataset(Dataset):
...     def __init__(self):
...         super().__init__('Regression', 10)
...     def __iter__(self):
...         yield from range(10)
>>> list(MyDataset().take(5))
[0, 1, 2, 3, 4]
Source code in spotPython/data/base.py
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
def take(self, k: int) -> itertools.islice:
    """Iterate over the k samples.

    Args:
        k (int): The number of samples to iterate over.

    Returns:
        itertools.islice: An iterator over the first k samples in the dataset.

    Examples:
        >>> class MyDataset(Dataset):
        ...     def __init__(self):
        ...         super().__init__('Regression', 10)
        ...     def __iter__(self):
        ...         yield from range(10)
        >>> list(MyDataset().take(5))
        [0, 1, 2, 3, 4]
    """
    return itertools.islice(self, k)

FileConfig

Bases: Config

Base class for configurations that are stored in a local file.

Parameters:

Name Type Description Default
filename str

The file’s name.

required
directory Optional[str]

The directory where the file is contained. Defaults to the location of the datasets module.

None
desc dict

Extra config parameters to pass as keyword arguments.

{}

Returns:

Type Description
FileConfig

A FileConfig object.

Examples:

>>> config = FileConfig(filename="config.json", directory="/path/to/directory")
Source code in spotPython/data/base.py
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
class FileConfig(Config):
    """Base class for configurations that are stored in a local file.

    Args:
        filename (str): The file's name.
        directory (Optional[str]):
            The directory where the file is contained.
            Defaults to the location of the `datasets` module.
        desc (dict): Extra config parameters to pass as keyword arguments.

    Returns:
        (FileConfig): A FileConfig object.

    Examples:
        >>> config = FileConfig(filename="config.json", directory="/path/to/directory")
    """

    def __init__(self, filename: str, directory: Optional[str] = None, **desc):
        super().__init__(**desc)
        self.filename = filename
        self.directory = directory

    @property
    def path(self) -> pathlib.Path:
        """The path to the configuration file.

        Returns:
            pathlib.Path: The path to the configuration file.

        Examples:
            >>> config = FileConfig(filename="config.json", directory="/path/to/directory")
            >>> config.path
            PosixPath('/path/to/directory/config.json')
        """
        if self.directory:
            return pathlib.Path(self.directory).joinpath(self.filename)
        return pathlib.Path(__file__).parent.joinpath(self.filename)

    @property
    def _repr_content(self) -> dict:
        """The content of the string representation of the FileConfig object.

        Returns:
            dict: A dictionary containing the content of the string representation of the FileConfig object.

        Examples:
            >>> config = FileConfig(filename="config.json", directory="/path/to/directory")
            >>> config._repr_content
            {'Path': '/path/to/directory/config.json'}
        """
        content = super()._repr_content
        content["Path"] = str(self.path)
        return content

path: pathlib.Path property

The path to the configuration file.

Returns:

Type Description
Path

pathlib.Path: The path to the configuration file.

Examples:

>>> config = FileConfig(filename="config.json", directory="/path/to/directory")
>>> config.path
PosixPath('/path/to/directory/config.json')

FileDataset

Bases: Dataset

Base class for datasets that are stored in a local file.

Small datasets that are part of the spotRiver package inherit from this class.

Parameters:

Name Type Description Default
filename str

The file’s name.

required
directory Optional[str]

The directory where the file is contained. Defaults to the location of the datasets module.

None
desc dict

Extra dataset parameters to pass as keyword arguments.

{}

Returns:

Type Description
FileDataset

A FileDataset object.

Examples:

>>> dataset = FileDataset(filename="dataset.csv", directory="/path/to/directory")
Source code in spotPython/data/base.py
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
class FileDataset(Dataset):
    """Base class for datasets that are stored in a local file.

    Small datasets that are part of the spotRiver package inherit from this class.

    Args:
        filename (str): The file's name.
        directory (Optional[str]):
            The directory where the file is contained.
            Defaults to the location of the `datasets` module.
        desc (dict): Extra dataset parameters to pass as keyword arguments.

    Returns:
        (FileDataset): A FileDataset object.

    Examples:
        >>> dataset = FileDataset(filename="dataset.csv", directory="/path/to/directory")
    """

    def __init__(self, filename: str, directory: Optional[str] = None, **desc):
        super().__init__(**desc)
        self.filename = filename
        self.directory = directory

    @property
    def path(self) -> pathlib.Path:
        """The path to the dataset file.

        Returns:
            pathlib.Path: The path to the dataset file.

        Examples:
            >>> dataset = FileDataset(filename="dataset.csv", directory="/path/to/directory")
            >>> dataset.path
            PosixPath('/path/to/directory/dataset.csv')
        """
        if self.directory:
            return pathlib.Path(self.directory).joinpath(self.filename)
        return pathlib.Path(__file__).parent.joinpath(self.filename)

    @property
    def _repr_content(self) -> dict:
        """The content of the string representation of the FileDataset object.

        Returns:
            dict: A dictionary containing the content of the string representation of the FileDataset object.

        Examples:
            >>> dataset = FileDataset(filename="dataset.csv", directory="/path/to/directory")
            >>> dataset._repr_content
            {'Path': '/path/to/directory/dataset.csv'}
        """
        content = super()._repr_content
        content["Path"] = str(self.path)
        return content

path: pathlib.Path property

The path to the dataset file.

Returns:

Type Description
Path

pathlib.Path: The path to the dataset file.

Examples:

>>> dataset = FileDataset(filename="dataset.csv", directory="/path/to/directory")
>>> dataset.path
PosixPath('/path/to/directory/dataset.csv')

GenericFileDataset

Bases: Dataset

Base class for datasets that are stored in a local file.

Small datasets that are part of the spotRiver package inherit from this class.

Parameters:

Name Type Description Default
filename str

The file’s name.

required
target str

The name of the target variable.

required
converters dict

A dictionary specifying how to convert the columns of the dataset. Defaults to None.

None
parse_dates list

A list of columns to parse as dates. Defaults to None.

None
directory str

The directory where the file is contained. Defaults to the location of the datasets module.

None
desc dict

Extra dataset parameters to pass as keyword arguments.

{}

Examples:

>>> from river.datasets import Iris
>>> dataset = Iris()
>>> for x, y in dataset:
...     print(x, y)
...     break
({'sepal_length': 5.1,
  'sepal_width': 3.5,
  'petal_length': 1.4,
  'petal_width': 0.2},
  'setosa')
Source code in spotPython/data/base.py
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
class GenericFileDataset(Dataset):
    """Base class for datasets that are stored in a local file.

    Small datasets that are part of the spotRiver package inherit from this class.

    Args:
        filename (str): The file's name.
        target (str): The name of the target variable.
        converters (dict):
            A dictionary specifying how to convert the columns of the dataset. Defaults to None.
        parse_dates (list): A list of columns to parse as dates. Defaults to None.
        directory (str):
            The directory where the file is contained. Defaults to the location of the `datasets` module.
        desc (dict): Extra dataset parameters to pass as keyword arguments.


    Examples:

        >>> from river.datasets import Iris
        >>> dataset = Iris()
        >>> for x, y in dataset:
        ...     print(x, y)
        ...     break
        ({'sepal_length': 5.1,
          'sepal_width': 3.5,
          'petal_length': 1.4,
          'petal_width': 0.2},
          'setosa')

    """

    def __init__(
        self,
        filename: str,
        target: str,
        converters: dict = None,
        parse_dates: list = None,
        directory: str = None,
        **desc: dict,
    ):
        super().__init__(**desc)
        self.filename = filename
        self.directory = directory
        self.target = target
        self.converters = converters
        self.parse_dates = parse_dates

    @property
    def path(self) -> pathlib.Path:
        """Returns the path where the dataset is stored."""
        if self.directory:
            return pathlib.Path(self.directory).joinpath(self.filename)
        return pathlib.Path(__file__).parent.joinpath(self.filename)

    @property
    def _repr_content(self):
        content = super()._repr_content
        content["Path"] = str(self.path)
        return content

path: pathlib.Path property

Returns the path where the dataset is stored.

RemoteDataset

Bases: FileDataset

Base class for datasets that are stored in a remote file.

Medium and large datasets that are not part of the river package inherit from this class.

The filename doesn’t have to be provided if unpack is False. Indeed in the latter case the filename will be inferred from the URL.

Parameters:

Name Type Description Default
url str

The URL the dataset is located at.

required
size int

The expected download size.

required
unpack bool

Whether to unpack the download or not. Defaults to True.

True
filename str

An optional name to given to the file if the file is unpacked. Defaults to None.

None
desc dict

Extra dataset parameters to pass as keyword arguments.

{}

Examples:

>>> from river.datasets import AirlinePassengers
>>> dataset = AirlinePassengers()
>>> for x, y in dataset:
...     print(x, y)
...     break
({'month': datetime.datetime(1949, 1, 1, 0, 0)}, 112)
Source code in spotPython/data/base.py
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
class RemoteDataset(FileDataset):
    """Base class for datasets that are stored in a remote file.

    Medium and large datasets that are not part of the river package inherit from this class.

    The filename doesn't have to be provided if unpack is False. Indeed in the latter case the
    filename will be inferred from the URL.

    Args:
        url (str): The URL the dataset is located at.
        size (int): The expected download size.
        unpack (bool): Whether to unpack the download or not. Defaults to True.
        filename (str):
            An optional name to given to the file if the file is unpacked. Defaults to None.
        desc (dict): Extra dataset parameters to pass as keyword arguments.

    Examples:

        >>> from river.datasets import AirlinePassengers
        >>> dataset = AirlinePassengers()
        >>> for x, y in dataset:
        ...     print(x, y)
        ...     break
        ({'month': datetime.datetime(1949, 1, 1, 0, 0)}, 112)

    """

    def __init__(self, url: str, size: int, unpack: bool = True, filename: str = None, **desc: dict):
        if filename is None:
            filename = path.basename(url)

        super().__init__(filename=filename, **desc)
        self.url = url
        self.size = size
        self.unpack = unpack

    @property
    def path(self) -> pathlib.Path:
        """Returns the path where the dataset is stored."""
        return pathlib.Path(get_data_home(), self.__class__.__name__, self.filename)

    def download(self, force: bool = False, verbose: bool = True) -> None:
        """Downloads the dataset.

        Args:
            force (bool):
                Whether to force the download even if the data is already downloaded.
                Defaults to False.
            verbose (bool):
                Whether to display information about the download. Defaults to True.

        """
        if not force and self.is_downloaded:
            return

        # Determine where to download the archive
        directory = self.path.parent
        directory.mkdir(parents=True, exist_ok=True)
        archive_path = directory.joinpath(path.basename(self.url))

        with request.urlopen(self.url) as r:
            # Notify the user
            if verbose:
                meta = r.info()
                try:
                    n_bytes = int(meta["Content-Length"])
                    msg = f"Downloading {self.url} ({n_bytes})"
                except KeyError:
                    msg = f"Downloading {self.url}"
                print(msg)

            # Now dump the contents of the requests
            with open(archive_path, "wb") as f:
                shutil.copyfileobj(r, f)

        if not self.unpack:
            return

        if verbose:
            print(f"Uncompressing into {directory}")

        if archive_path.suffix.endswith("zip"):
            with zipfile.ZipFile(archive_path, "r") as zf:
                zf.extractall(directory)

        elif archive_path.suffix.endswith(("gz", "tar")):
            mode = "r:" if archive_path.suffix.endswith("tar") else "r:gz"
            tar = tarfile.open(archive_path, mode)
            tar.extractall(directory)
            tar.close()

        else:
            raise RuntimeError(f"Unhandled extension type: {archive_path.suffix}")

        # Delete the archive file now that it has been uncompressed
        archive_path.unlink()

    @abc.abstractmethod
    def _iter(self):
        pass

    @property
    def is_downloaded(self) -> bool:
        """Indicate whether or not the data has been correctly downloaded."""
        if self.path.exists():
            if self.path.is_file():
                return self.path.stat().st_size == self.size
            return sum(f.stat().st_size for f in self.path.glob("**/*") if f.is_file())

        return False

    def __iter__(self):
        """Iterates over the samples of a dataset."""
        if not self.is_downloaded:
            self.download(verbose=True)
        if not self.is_downloaded:
            raise RuntimeError("Something went wrong during the download")
        yield from self._iter()

    @property
    def _repr_content(self):
        content = super()._repr_content
        content["URL"] = self.url
        content["Size"] = self.size
        content["Downloaded"] = str(self.is_downloaded)
        return content

is_downloaded: bool property

Indicate whether or not the data has been correctly downloaded.

path: pathlib.Path property

Returns the path where the dataset is stored.

__iter__()

Iterates over the samples of a dataset.

Source code in spotPython/data/base.py
594
595
596
597
598
599
600
def __iter__(self):
    """Iterates over the samples of a dataset."""
    if not self.is_downloaded:
        self.download(verbose=True)
    if not self.is_downloaded:
        raise RuntimeError("Something went wrong during the download")
    yield from self._iter()

download(force=False, verbose=True)

Downloads the dataset.

Parameters:

Name Type Description Default
force bool

Whether to force the download even if the data is already downloaded. Defaults to False.

False
verbose bool

Whether to display information about the download. Defaults to True.

True
Source code in spotPython/data/base.py
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
def download(self, force: bool = False, verbose: bool = True) -> None:
    """Downloads the dataset.

    Args:
        force (bool):
            Whether to force the download even if the data is already downloaded.
            Defaults to False.
        verbose (bool):
            Whether to display information about the download. Defaults to True.

    """
    if not force and self.is_downloaded:
        return

    # Determine where to download the archive
    directory = self.path.parent
    directory.mkdir(parents=True, exist_ok=True)
    archive_path = directory.joinpath(path.basename(self.url))

    with request.urlopen(self.url) as r:
        # Notify the user
        if verbose:
            meta = r.info()
            try:
                n_bytes = int(meta["Content-Length"])
                msg = f"Downloading {self.url} ({n_bytes})"
            except KeyError:
                msg = f"Downloading {self.url}"
            print(msg)

        # Now dump the contents of the requests
        with open(archive_path, "wb") as f:
            shutil.copyfileobj(r, f)

    if not self.unpack:
        return

    if verbose:
        print(f"Uncompressing into {directory}")

    if archive_path.suffix.endswith("zip"):
        with zipfile.ZipFile(archive_path, "r") as zf:
            zf.extractall(directory)

    elif archive_path.suffix.endswith(("gz", "tar")):
        mode = "r:" if archive_path.suffix.endswith("tar") else "r:gz"
        tar = tarfile.open(archive_path, mode)
        tar.extractall(directory)
        tar.close()

    else:
        raise RuntimeError(f"Unhandled extension type: {archive_path.suffix}")

    # Delete the archive file now that it has been uncompressed
    archive_path.unlink()

SyntheticDataset

Bases: Dataset

A synthetic dataset.

Parameters:

Name Type Description Default
task str

Type of task the dataset is meant for. Should be one of: - “Regression” - “Binary classification” - “Multi-class classification” - “Multi-output binary classification” - “Multi-output regression”

required
n_features int

Number of features in the dataset.

required
n_samples int

Number of samples in the dataset.

required
n_classes int

Number of classes in the dataset, only applies to classification datasets.

None
n_outputs int

Number of outputs the target is made of, only applies to multi-output datasets.

None
sparse bool

Whether the dataset is sparse or not.

False

Returns:

Type Description
SyntheticDataset

A synthetic dataset object.

Examples:

>>> from sklearn.datasets import make_classification
>>> X, y = make_classification(n_features=4, random_state=0)
>>> dataset = SyntheticDataset(task="Binary classification",
                                    n_features=4,
                                    n_samples=100,
                                    n_classes=2,
                                    n_outputs=1,
                                    sparse=False)
Source code in spotPython/data/base.py
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
class SyntheticDataset(Dataset):
    """A synthetic dataset.

    Args:
        task (str): Type of task the dataset is meant for. Should be one of:
            - "Regression"
            - "Binary classification"
            - "Multi-class classification"
            - "Multi-output binary classification"
            - "Multi-output regression"
        n_features (int): Number of features in the dataset.
        n_samples (int): Number of samples in the dataset.
        n_classes (int): Number of classes in the dataset, only applies to classification datasets.
        n_outputs (int): Number of outputs the target is made of, only applies to multi-output datasets.
        sparse (bool): Whether the dataset is sparse or not.

    Returns:
        (SyntheticDataset): A synthetic dataset object.

    Examples:
        >>> from sklearn.datasets import make_classification
        >>> X, y = make_classification(n_features=4, random_state=0)
        >>> dataset = SyntheticDataset(task="Binary classification",
                                            n_features=4,
                                            n_samples=100,
                                            n_classes=2,
                                            n_outputs=1,
                                            sparse=False)

    """

    def __init__(
        self,
        task: str,
        n_features: int,
        n_samples: int,
        n_classes: Union[int, None] = None,
        n_outputs: Union[int, None] = None,
        sparse: bool = False,
    ):
        pass

    def __repr__(self) -> str:
        """String representation of the SyntheticDataset object.

        Returns:
            str: A string representation of the SyntheticDataset object.

        Examples:
            >>> from sklearn.datasets import make_classification
            >>> X, y = make_classification(n_features=4, random_state=0)
            >>> dataset = SyntheticDataset(task="Binary classification",
                                                n_features=4,
                                                n_samples=100,
                                                n_classes=2,
                                                n_outputs=1,
                                                sparse=False)
            >>> print(dataset)
            Synthetic data generator

            Configuration
            -------------
                task  Binary classification
          n_features  4
           n_samples  100
           n_classes  2
           n_outputs  1
              sparse  False
        """
        l_len_prop = max(map(len, self._repr_content.keys()))
        r_len_prop = max(map(len, self._repr_content.values()))
        params = self._get_params()
        l_len_config = max(map(len, params.keys()))
        r_len_config = max(map(len, map(str, params.values())))

        out = (
            "Synthetic data generator\n\n"
            + "\n".join(k.rjust(l_len_prop) + "  " + v.ljust(r_len_prop) for k, v in self._repr_content.items())
            + "\n\nConfiguration\n-------------\n"
            + "\n".join(k.rjust(l_len_config) + "  " + str(v).ljust(r_len_config) for k, v in params.items())
        )

        return out

    def _get_params(self) -> typing.Dict[str, typing.Any]:
        """Return the parameters that were used during initialization.

        Returns:
            dict: A dictionary containing the parameters that were used during initialization.

        Examples:
            >>> from sklearn.datasets import make_classification
            >>> X, y = make_classification(n_features=4, random_state=0)
            >>> dataset = SyntheticDataset(task="Binary classification",
                                            n_features=4,
                                            n_samples=100,
                                            n_classes=2,
                                            n_outputs=1,
                                            sparse=False)
            >>> dataset._get_params()
            {'task': 'Binary classification',
             'n_features': 4,
             'n_samples': 100,
             'n_classes': 2,
             'n_outputs': 1,
             'sparse': False}
        """
        return {
            name: getattr(self, name)
            for name, param in inspect.signature(self.__init__).parameters.items()  # type: ignore
            if param.kind != param.VAR_KEYWORD
        }

__repr__()

String representation of the SyntheticDataset object.

Returns:

Name Type Description
str str

A string representation of the SyntheticDataset object.

Examples:

>>> from sklearn.datasets import make_classification
>>> X, y = make_classification(n_features=4, random_state=0)
>>> dataset = SyntheticDataset(task="Binary classification",
                                    n_features=4,
                                    n_samples=100,
                                    n_classes=2,
                                    n_outputs=1,
                                    sparse=False)
>>> print(dataset)
Synthetic data generator
Configuration
task  Binary classification

n_features 4 n_samples 100 n_classes 2 n_outputs 1 sparse False

Source code in spotPython/data/base.py
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
def __repr__(self) -> str:
    """String representation of the SyntheticDataset object.

    Returns:
        str: A string representation of the SyntheticDataset object.

    Examples:
        >>> from sklearn.datasets import make_classification
        >>> X, y = make_classification(n_features=4, random_state=0)
        >>> dataset = SyntheticDataset(task="Binary classification",
                                            n_features=4,
                                            n_samples=100,
                                            n_classes=2,
                                            n_outputs=1,
                                            sparse=False)
        >>> print(dataset)
        Synthetic data generator

        Configuration
        -------------
            task  Binary classification
      n_features  4
       n_samples  100
       n_classes  2
       n_outputs  1
          sparse  False
    """
    l_len_prop = max(map(len, self._repr_content.keys()))
    r_len_prop = max(map(len, self._repr_content.values()))
    params = self._get_params()
    l_len_config = max(map(len, params.keys()))
    r_len_config = max(map(len, map(str, params.values())))

    out = (
        "Synthetic data generator\n\n"
        + "\n".join(k.rjust(l_len_prop) + "  " + v.ljust(r_len_prop) for k, v in self._repr_content.items())
        + "\n\nConfiguration\n-------------\n"
        + "\n".join(k.rjust(l_len_config) + "  " + str(v).ljust(r_len_config) for k, v in params.items())
    )

    return out

get_data_home(data_home=None)

Return the location where remote datasets are to be stored.

By default the data directory is set to a folder named ‘spotriver_data’ in the user home folder. Alternatively, it can be set by the ‘SPOTRIVER_DATA’ environment variable or programmatically by giving an explicit folder path. The ‘~’ symbol is expanded to the user home folder. If the folder does not already exist, it is automatically created.

Parameters:

Name Type Description Default
data_home str or Path

The path to spotriver data directory. If None, the default path is ~/spotriver_data.

None

Returns:

Name Type Description
data_home Path

The path to the spotriver data directory.

Examples:

>>> from pathlib import Path
>>> get_data_home()
PosixPath('/home/user/spotriver_data')
>>> get_data_home(Path('/tmp/spotriver_data'))
PosixPath('/tmp/spotriver_data')
Source code in spotPython/data/base.py
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
def get_data_home(data_home: Optional[Union[str, Path]] = None) -> Path:
    """Return the location where remote datasets are to be stored.

    By default the data directory is set to a folder named 'spotriver_data' in the
    user home folder. Alternatively, it can be set by the 'SPOTRIVER_DATA' environment
    variable or programmatically by giving an explicit folder path. The '~'
    symbol is expanded to the user home folder.
    If the folder does not already exist, it is automatically created.

    Args:
        data_home (str or pathlib.Path, optional):
            The path to spotriver data directory. If `None`, the default path
            is `~/spotriver_data`.

    Returns:
        data_home (pathlib.Path):
            The path to the spotriver data directory.

    Examples:
        >>> from pathlib import Path
        >>> get_data_home()
        PosixPath('/home/user/spotriver_data')
        >>> get_data_home(Path('/tmp/spotriver_data'))
        PosixPath('/tmp/spotriver_data')
    """
    if data_home is None:
        data_home = environ.get("SPOTRIVER_DATA", Path.home() / "spotriver_data")
    # Ensure data_home is a Path() object pointing to an absolute path
    data_home = Path(data_home).absolute()
    # Create data directory if it does not exists.
    data_home.mkdir(parents=True, exist_ok=True)
    return data_home