.readthedocs.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
NOTICE
README.rst
SECURITY.md
dev_setup.sh
pyproject.toml
requirements.txt
.github/dependabot.yml
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/hooks/pre-commit
.github/scripts/build_docs.sh
.github/scripts/prepend_license.sh
.github/workflows/codeql.yml
.github/workflows/coverage.yml
.github/workflows/integration_tests.yml
.github/workflows/pypi_publish.yml
.github/workflows/run_renate.yml
.github/workflows/run_unit_tests.yml
.github/workflows/test_docs.yml
doc/conf.py
doc/index.rst
doc/requirements.txt
doc/_images/improvement_renate.svg
doc/_images/improvement_tuning.svg
doc/benchmarking/custom_benchmarks.rst
doc/benchmarking/index.rst
doc/benchmarking/renate_benchmarks.rst
doc/examples/index.rst
doc/examples/nlp_finetuning.rst
doc/examples/train_classifier_sagemaker.rst
doc/examples/train_mlp_locally.rst
doc/getting_started/avalanche.rst
doc/getting_started/how_to_renate_config.rst
doc/getting_started/how_to_run_training.rst
doc/getting_started/index.rst
doc/getting_started/install.rst
doc/getting_started/output.rst
doc/getting_started/supported_algorithms.rst
examples/benchmarking/class_incremental_learning_cifar10_der.py
examples/getting_started/renate_config.py
examples/nlp_finetuning/renate_config.py
examples/nlp_finetuning/start.py
examples/simple_classifier_cifar10/renate_config.py
examples/simple_classifier_cifar10/requirements.txt
examples/simple_classifier_cifar10/start_with_hpo.py
examples/simple_classifier_cifar10/start_without_hpo.py
examples/train_mlp_locally/renate_config.py
examples/train_mlp_locally/start_training_with_er_without_hpo.py
examples/train_mlp_locally/start_training_with_hpo.py
examples/train_mlp_locally/start_training_without_hpo.py
src/Renate.egg-info/PKG-INFO
src/Renate.egg-info/SOURCES.txt
src/Renate.egg-info/dependency_links.txt
src/Renate.egg-info/requires.txt
src/Renate.egg-info/top_level.txt
src/renate/__init__.py
src/renate/defaults.py
src/renate/py.typed
src/renate/types.py
src/renate/benchmark/__init__.py
src/renate/benchmark/experiment_config.py
src/renate/benchmark/experimentation.py
src/renate/benchmark/scenarios.py
src/renate/benchmark/datasets/__init__.py
src/renate/benchmark/datasets/nlp_datasets.py
src/renate/benchmark/datasets/vision_datasets.py
src/renate/benchmark/models/__init__.py
src/renate/benchmark/models/base.py
src/renate/benchmark/models/mlp.py
src/renate/benchmark/models/resnet.py
src/renate/benchmark/models/vision_transformer.py
src/renate/cli/parsing_functions.py
src/renate/cli/run_experiment_with_scenario.py
src/renate/cli/run_remote_job.py
src/renate/cli/run_training.py
src/renate/data/__init__.py
src/renate/data/data_module.py
src/renate/data/datasets.py
src/renate/evaluation/__init__.py
src/renate/evaluation/evaluator.py
src/renate/evaluation/metrics/__init__.py
src/renate/evaluation/metrics/classification.py
src/renate/evaluation/metrics/performance_regression_metrics.py
src/renate/evaluation/metrics/utils.py
src/renate/memory/__init__.py
src/renate/memory/buffer.py
src/renate/memory/storage.py
src/renate/models/__init__.py
src/renate/models/prediction_strategies.py
src/renate/models/renate_module.py
src/renate/models/layers/__init__.py
src/renate/models/layers/cn.py
src/renate/training/__init__.py
src/renate/training/training.py
src/renate/updaters/__init__.py
src/renate/updaters/learner.py
src/renate/updaters/model_updater.py
src/renate/updaters/avalanche/__init__.py
src/renate/updaters/avalanche/learner.py
src/renate/updaters/avalanche/model_updater.py
src/renate/updaters/avalanche/plugins.py
src/renate/updaters/experimental/__init__.py
src/renate/updaters/experimental/er.py
src/renate/updaters/experimental/fine_tuning.py
src/renate/updaters/experimental/gdumb.py
src/renate/updaters/experimental/joint.py
src/renate/updaters/experimental/offline_er.py
src/renate/updaters/experimental/repeated_distill.py
src/renate/updaters/learner_components/__init__.py
src/renate/updaters/learner_components/component.py
src/renate/updaters/learner_components/losses.py
src/renate/updaters/learner_components/reinitialization.py
src/renate/utils/__init__.py
src/renate/utils/avalanche.py
src/renate/utils/config_spaces.py
src/renate/utils/file.py
src/renate/utils/module.py
src/renate/utils/optimizer.py
src/renate/utils/pytorch.py
src/renate/utils/syne_tune.py
test/conftest.py
test/dummy_datasets.py
test/integration_tests/run_experiment.py
test/integration_tests/run_quick_test.py
test/integration_tests/configs/datasets/cifar10.json
test/integration_tests/configs/datasets/cifar100.json
test/integration_tests/configs/datasets/fashionmnist.json
test/integration_tests/configs/datasets/mnist.json
test/integration_tests/configs/models/mlp-200.json
test/integration_tests/configs/models/resnet18-cifar.json
test/integration_tests/configs/scenarios/class-incremental-2updates.json
test/integration_tests/configs/scenarios/feature-sorting-2updates.json
test/integration_tests/configs/scenarios/hue-shift-2updates.json
test/integration_tests/configs/scenarios/iid-2updates.json
test/integration_tests/configs/scenarios/permutation-2updates.json
test/integration_tests/configs/scenarios/rotation-10updates.json
test/integration_tests/configs/scenarios/rotation-2updates.json
test/integration_tests/configs/suites/quick/avalanche-er.json
test/integration_tests/configs/suites/quick/avalanche-ewc.json
test/integration_tests/configs/suites/quick/avalanche-icarl.json
test/integration_tests/configs/suites/quick/avalanche-lwf.json
test/integration_tests/configs/suites/quick/cls-er.json
test/integration_tests/configs/suites/quick/der.json
test/integration_tests/configs/suites/quick/er.json
test/integration_tests/configs/suites/quick/fine-tuning.json
test/integration_tests/configs/suites/quick/gdumb.json
test/integration_tests/configs/suites/quick/joint.json
test/integration_tests/configs/suites/quick/offline-er.json
test/integration_tests/configs/suites/quick/pod-er.json
test/integration_tests/configs/suites/quick/super-er.json
test/integration_tests/configs/updaters/avalanche-er-buffer500.json
test/integration_tests/configs/updaters/avalanche-ewc.json
test/integration_tests/configs/updaters/avalanche-icarl-buffer500.json
test/integration_tests/configs/updaters/avalanche-lwf.json
test/integration_tests/configs/updaters/cls-er-buffer500.json
test/integration_tests/configs/updaters/der-buffer500.json
test/integration_tests/configs/updaters/er-buffer500.json
test/integration_tests/configs/updaters/fine-tuning.json
test/integration_tests/configs/updaters/gdumb-buffer500.json
test/integration_tests/configs/updaters/joint.json
test/integration_tests/configs/updaters/offline-er-buffer500.json
test/integration_tests/configs/updaters/pod-er-buffer500.json
test/integration_tests/configs/updaters/super-er-buffer500.json
test/renate/test_renate.py
test/renate/benchmark/test_experimentation.py
test/renate/benchmark/test_experimentation_config.py
test/renate/benchmark/test_scenarios.py
test/renate/benchmark/models/test_mlp.py
test/renate/benchmark/models/test_resnet.py
test/renate/benchmark/models/test_vision_transformer.py
test/renate/cli/test_parsing_functions.py
test/renate/data/test_data_module.py
test/renate/data/test_datasets.py
test/renate/evaluation/metrics/test_classification.py
test/renate/evaluation/metrics/test_regression_metrics.py
test/renate/memory/test_buffer.py
test/renate/memory/test_storage.py
test/renate/models/test_renate_module.py
test/renate/renate_config_files/config.py
test/renate/renate_config_files/config_scenario.py
test/renate/training/test_run_training.py
test/renate/updaters/test_learner.py
test/renate/updaters/test_model_updater.py
test/renate/updaters/avalanche/test_avalanche_learner.py
test/renate/updaters/avalanche/test_avalanche_model_updater.py
test/renate/updaters/avalanche/test_avalanche_plugins.py
test/renate/updaters/experimental/test_er.py
test/renate/updaters/experimental/test_fine_tuning.py
test/renate/updaters/experimental/test_joint.py
test/renate/updaters/experimental/test_repeated_distill.py
test/renate/utils/test_avalanche.py
test/renate/utils/test_file.py
test/renate/utils/test_metrics_utils.py
test/renate/utils/test_optimizer.py
test/renate/utils/test_pytorch.py
test/renate/utils/test_syne_tune.py