__init__.py 566 B

1234567891011121314
  1. """
  2. The :py:mod:`benchmarks` module provides a set of utilities that can be used for
  3. handling and generating your continual learning data stream. In the
  4. :py:mod:`datasets` module, basic PyTorch Datasets are provided. In the
  5. :py:mod:`classic` module instead, classic benchmarks (already proposed in the
  6. CL literature) generated from the datasets are provided. Finally,
  7. in :py:mod:`generators` basic utilities to generate new benchmarks on-the-fly
  8. are made available.
  9. """
  10. from .scenarios import *
  11. from .generators import *
  12. from .classic import *
  13. from .utils import *