SOURCES.txt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. LICENSE
  2. MANIFEST.in
  3. README.md
  4. extra_dependencies.txt
  5. pyproject.toml
  6. setup.cfg
  7. setup.py
  8. avalanche/__init__.py
  9. avalanche/core.py
  10. avalanche/benchmarks/__init__.py
  11. avalanche/benchmarks/classic/__init__.py
  12. avalanche/benchmarks/classic/ccifar10.py
  13. avalanche/benchmarks/classic/ccifar100.py
  14. avalanche/benchmarks/classic/ccub200.py
  15. avalanche/benchmarks/classic/cfashion_mnist.py
  16. avalanche/benchmarks/classic/cimagenet.py
  17. avalanche/benchmarks/classic/cinaturalist.py
  18. avalanche/benchmarks/classic/classic_benchmarks_utils.py
  19. avalanche/benchmarks/classic/clear.py
  20. avalanche/benchmarks/classic/cmnist.py
  21. avalanche/benchmarks/classic/comniglot.py
  22. avalanche/benchmarks/classic/core50.py
  23. avalanche/benchmarks/classic/ctiny_imagenet.py
  24. avalanche/benchmarks/classic/ctrl.py
  25. avalanche/benchmarks/classic/endless_cl_sim.py
  26. avalanche/benchmarks/classic/ex_model.py
  27. avalanche/benchmarks/classic/openloris.py
  28. avalanche/benchmarks/classic/stream51.py
  29. avalanche/benchmarks/datasets/__init__.py
  30. avalanche/benchmarks/datasets/dataset_utils.py
  31. avalanche/benchmarks/datasets/downloadable_dataset.py
  32. avalanche/benchmarks/datasets/imagenet_data.py
  33. avalanche/benchmarks/datasets/omniglot.py
  34. avalanche/benchmarks/datasets/torchaudio_wrapper.py
  35. avalanche/benchmarks/datasets/torchvision_wrapper.py
  36. avalanche/benchmarks/datasets/clear/__init__.py
  37. avalanche/benchmarks/datasets/clear/clear.py
  38. avalanche/benchmarks/datasets/clear/clear_data.py
  39. avalanche/benchmarks/datasets/core50/__init__.py
  40. avalanche/benchmarks/datasets/core50/core50.py
  41. avalanche/benchmarks/datasets/core50/core50_data.py
  42. avalanche/benchmarks/datasets/cub200/__init__.py
  43. avalanche/benchmarks/datasets/cub200/cub200.py
  44. avalanche/benchmarks/datasets/endless_cl_sim/__init__.py
  45. avalanche/benchmarks/datasets/endless_cl_sim/endless_cl_sim.py
  46. avalanche/benchmarks/datasets/endless_cl_sim/endless_cl_sim_data.py
  47. avalanche/benchmarks/datasets/inaturalist/__init__.py
  48. avalanche/benchmarks/datasets/inaturalist/inaturalist.py
  49. avalanche/benchmarks/datasets/inaturalist/inaturalist_data.py
  50. avalanche/benchmarks/datasets/lvis_dataset/__init__.py
  51. avalanche/benchmarks/datasets/lvis_dataset/lvis_data.py
  52. avalanche/benchmarks/datasets/lvis_dataset/lvis_dataset.py
  53. avalanche/benchmarks/datasets/mini_imagenet/__init__.py
  54. avalanche/benchmarks/datasets/mini_imagenet/mini_imagenet.py
  55. avalanche/benchmarks/datasets/mini_imagenet/mini_imagenet_data.py
  56. avalanche/benchmarks/datasets/mini_imagenet/csv_files/test.csv
  57. avalanche/benchmarks/datasets/mini_imagenet/csv_files/train.csv
  58. avalanche/benchmarks/datasets/mini_imagenet/csv_files/val.csv
  59. avalanche/benchmarks/datasets/openloris/__init__.py
  60. avalanche/benchmarks/datasets/openloris/openloris.py
  61. avalanche/benchmarks/datasets/openloris/openloris_data.py
  62. avalanche/benchmarks/datasets/penn_fudan/__init__.py
  63. avalanche/benchmarks/datasets/penn_fudan/penn_fudan_data.py
  64. avalanche/benchmarks/datasets/penn_fudan/penn_fudan_dataset.py
  65. avalanche/benchmarks/datasets/stream51/__init__.py
  66. avalanche/benchmarks/datasets/stream51/stream51.py
  67. avalanche/benchmarks/datasets/stream51/stream51_data.py
  68. avalanche/benchmarks/datasets/tiny_imagenet/__init__.py
  69. avalanche/benchmarks/datasets/tiny_imagenet/tiny_imagenet.py
  70. avalanche/benchmarks/generators/__init__.py
  71. avalanche/benchmarks/generators/benchmark_generators.py
  72. avalanche/benchmarks/generators/scenario_generators.py
  73. avalanche/benchmarks/scenarios/__init__.py
  74. avalanche/benchmarks/scenarios/classification_scenario.py
  75. avalanche/benchmarks/scenarios/detection_scenario.py
  76. avalanche/benchmarks/scenarios/exmodel_scenario.py
  77. avalanche/benchmarks/scenarios/generic_benchmark_creation.py
  78. avalanche/benchmarks/scenarios/generic_definitions.py
  79. avalanche/benchmarks/scenarios/generic_scenario.py
  80. avalanche/benchmarks/scenarios/generic_scenario_creation.py
  81. avalanche/benchmarks/scenarios/lazy_dataset_sequence.py
  82. avalanche/benchmarks/scenarios/online_scenario.py
  83. avalanche/benchmarks/scenarios/rl_scenario.py
  84. avalanche/benchmarks/scenarios/scenario_utils.py
  85. avalanche/benchmarks/scenarios/new_classes/__init__.py
  86. avalanche/benchmarks/scenarios/new_classes/nc_scenario.py
  87. avalanche/benchmarks/scenarios/new_classes/nc_utils.py
  88. avalanche/benchmarks/scenarios/new_instances/__init__.py
  89. avalanche/benchmarks/scenarios/new_instances/ni_scenario.py
  90. avalanche/benchmarks/scenarios/new_instances/ni_utils.py
  91. avalanche/benchmarks/utils/__init__.py
  92. avalanche/benchmarks/utils/adaptive_transform.py
  93. avalanche/benchmarks/utils/avalanche_dataset.py
  94. avalanche/benchmarks/utils/data_loader.py
  95. avalanche/benchmarks/utils/dataset_definitions.py
  96. avalanche/benchmarks/utils/dataset_utils.py
  97. avalanche/benchmarks/utils/datasets_from_filelists.py
  98. avalanche/benchmarks/utils/torchvision_wrapper.py
  99. avalanche/benchmarks/utils/utils.py
  100. avalanche/evaluation/__init__.py
  101. avalanche/evaluation/metric_definitions.py
  102. avalanche/evaluation/metric_results.py
  103. avalanche/evaluation/metric_utils.py
  104. avalanche/evaluation/plot_utils.py
  105. avalanche/evaluation/metrics/__init__.py
  106. avalanche/evaluation/metrics/accuracy.py
  107. avalanche/evaluation/metrics/amca.py
  108. avalanche/evaluation/metrics/checkpoint.py
  109. avalanche/evaluation/metrics/class_accuracy.py
  110. avalanche/evaluation/metrics/confusion_matrix.py
  111. avalanche/evaluation/metrics/cpu_usage.py
  112. avalanche/evaluation/metrics/detection.py
  113. avalanche/evaluation/metrics/disk_usage.py
  114. avalanche/evaluation/metrics/forgetting_bwt.py
  115. avalanche/evaluation/metrics/forward_transfer.py
  116. avalanche/evaluation/metrics/gpu_usage.py
  117. avalanche/evaluation/metrics/images_samples.py
  118. avalanche/evaluation/metrics/labels_repartition.py
  119. avalanche/evaluation/metrics/loss.py
  120. avalanche/evaluation/metrics/mac.py
  121. avalanche/evaluation/metrics/mean.py
  122. avalanche/evaluation/metrics/mean_scores.py
  123. avalanche/evaluation/metrics/ram_usage.py
  124. avalanche/evaluation/metrics/timing.py
  125. avalanche/evaluation/metrics/topk_acc.py
  126. avalanche/evaluation/metrics/detection_evaluators/__init__.py
  127. avalanche/evaluation/metrics/detection_evaluators/coco_evaluator.py
  128. avalanche/evaluation/metrics/detection_evaluators/lvis_evaluator.py
  129. avalanche/logging/__init__.py
  130. avalanche/logging/base_logger.py
  131. avalanche/logging/csv_logger.py
  132. avalanche/logging/interactive_logging.py
  133. avalanche/logging/tensorboard_logger.py
  134. avalanche/logging/text_logging.py
  135. avalanche/logging/wandb_logger.py
  136. avalanche/models/__init__.py
  137. avalanche/models/base_model.py
  138. avalanche/models/batch_renorm.py
  139. avalanche/models/dynamic_modules.py
  140. avalanche/models/dynamic_optimizers.py
  141. avalanche/models/generator.py
  142. avalanche/models/helper_method.py
  143. avalanche/models/icarl_resnet.py
  144. avalanche/models/lenet5.py
  145. avalanche/models/mlp_tiny_imagenet.py
  146. avalanche/models/mobilenetv1.py
  147. avalanche/models/ncm_classifier.py
  148. avalanche/models/pnn.py
  149. avalanche/models/pytorchcv_wrapper.py
  150. avalanche/models/simple_cnn.py
  151. avalanche/models/simple_mlp.py
  152. avalanche/models/simple_sequence_classifier.py
  153. avalanche/models/slda_resnet.py
  154. avalanche/models/slim_resnet18.py
  155. avalanche/models/utils.py
  156. avalanche/training/__init__.py
  157. avalanche/training/losses.py
  158. avalanche/training/storage_policy.py
  159. avalanche/training/utils.py
  160. avalanche/training/plugins/__init__.py
  161. avalanche/training/plugins/agem.py
  162. avalanche/training/plugins/clock.py
  163. avalanche/training/plugins/cope.py
  164. avalanche/training/plugins/cwr_star.py
  165. avalanche/training/plugins/early_stopping.py
  166. avalanche/training/plugins/evaluation.py
  167. avalanche/training/plugins/ewc.py
  168. avalanche/training/plugins/gdumb.py
  169. avalanche/training/plugins/gem.py
  170. avalanche/training/plugins/generative_replay.py
  171. avalanche/training/plugins/gss_greedy.py
  172. avalanche/training/plugins/lfl.py
  173. avalanche/training/plugins/lr_scheduling.py
  174. avalanche/training/plugins/lwf.py
  175. avalanche/training/plugins/mas.py
  176. avalanche/training/plugins/replay.py
  177. avalanche/training/plugins/rwalk.py
  178. avalanche/training/plugins/strategy_plugin.py
  179. avalanche/training/plugins/synaptic_intelligence.py
  180. avalanche/training/supervised/__init__.py
  181. avalanche/training/supervised/ar1.py
  182. avalanche/training/supervised/cumulative.py
  183. avalanche/training/supervised/deep_slda.py
  184. avalanche/training/supervised/icarl.py
  185. avalanche/training/supervised/joint_training.py
  186. avalanche/training/supervised/lamaml.py
  187. avalanche/training/supervised/naive_object_detection.py
  188. avalanche/training/supervised/strategy_wrappers.py
  189. avalanche/training/supervised/strategy_wrappers_online.py
  190. avalanche/training/templates/__init__.py
  191. avalanche/training/templates/base.py
  192. avalanche/training/templates/base_online_sgd.py
  193. avalanche/training/templates/base_sgd.py
  194. avalanche/training/templates/online_supervised.py
  195. avalanche/training/templates/supervised.py
  196. avalanche_lib.egg-info/PKG-INFO
  197. avalanche_lib.egg-info/SOURCES.txt
  198. avalanche_lib.egg-info/dependency_links.txt
  199. avalanche_lib.egg-info/requires.txt
  200. avalanche_lib.egg-info/top_level.txt
  201. examples/__init__.py
  202. examples/all_mnist.py
  203. examples/all_mnist_early_stopping.py
  204. examples/ar1.py
  205. examples/clear.py
  206. examples/clear_linear.py
  207. examples/confusion_matrix.py
  208. examples/continual_sequence_classification.py
  209. examples/cope.py
  210. examples/dataloader.py
  211. examples/dataset_inspection.py
  212. examples/deep_slda.py
  213. examples/detection.py
  214. examples/detection_examples_utils.py
  215. examples/detection_lvis.py
  216. examples/endless_cl_sim.py
  217. examples/eval_plugin.py
  218. examples/ewc_mnist.py
  219. examples/ex_model_cl.py
  220. examples/gem_agem_mnist.py
  221. examples/generative_replay_MNIST_generator.py
  222. examples/generative_replay_splitMNIST.py
  223. examples/getting_started.py
  224. examples/icarl.py
  225. examples/joint_training.py
  226. examples/lamaml_cifar100.py
  227. examples/lfl_mnist.py
  228. examples/lwf_mnist.py
  229. examples/mean_scores.py
  230. examples/multihead.py
  231. examples/online_naive.py
  232. examples/online_replay.py
  233. examples/pytorchcv_models.py
  234. examples/replay.py
  235. examples/rwalk_mnist.py
  236. examples/simple_ctrl.py
  237. examples/standalone_metric.py
  238. examples/synaptic_intelligence.py
  239. examples/task_incremental.py
  240. examples/task_metrics.py
  241. examples/tensorboard_logger.py
  242. examples/test_install.py
  243. examples/wandb_logger.py
  244. examples/tvdetection/__init__.py
  245. examples/tvdetection/coco_eval.py
  246. examples/tvdetection/coco_utils.py
  247. examples/tvdetection/engine.py
  248. examples/tvdetection/group_by_aspect_ratio.py
  249. examples/tvdetection/lvis_eval.py
  250. examples/tvdetection/presets.py
  251. examples/tvdetection/train.py
  252. examples/tvdetection/transforms.py
  253. examples/tvdetection/utils.py
  254. tests/__init__.py
  255. tests/test_avalanche_dataset.py
  256. tests/test_cifar100_benchmarks.py
  257. tests/test_cifar10_benchmarks.py
  258. tests/test_core50.py
  259. tests/test_ctrl.py
  260. tests/test_custom_streams.py
  261. tests/test_dataloaders.py
  262. tests/test_endless_cl_sim.py
  263. tests/test_fmnist_benckmarks.py
  264. tests/test_helper_method.py
  265. tests/test_high_level_generators.py
  266. tests/test_loggers.py
  267. tests/test_metrics.py
  268. tests/test_mnist_benckmarks.py
  269. tests/test_models.py
  270. tests/test_nc_mt_scenario.py
  271. tests/test_nc_sit_scenario.py
  272. tests/test_ni_sit_scenario.py
  273. tests/test_tinyimagenet.py
  274. tests/unit_tests_utils.py
  275. tests/benchmarks/__init__.py
  276. tests/benchmarks/scenarios/__init__.py
  277. tests/benchmarks/scenarios/test_classification_scenario.py
  278. tests/benchmarks/scenarios/test_generic_scenario.py
  279. tests/benchmarks/scenarios/test_online_scenario.py
  280. tests/benchmarks/scenarios/test_rl_scenario.py
  281. tests/benchmarks/scenarios/test_scenarios_typechecks.py
  282. tests/evaluation/__init__.py
  283. tests/evaluation/test_image_samples.py
  284. tests/training/__init__.py
  285. tests/training/test_ar1.py
  286. tests/training/test_losses.py
  287. tests/training/test_online_strategies.py
  288. tests/training/test_plugins.py
  289. tests/training/test_replay.py
  290. tests/training/test_strategies.py
  291. tests/training/test_strategies_accuracy.py
  292. tests/training/test_stream_completeness.py
  293. tests/training/test_supervised_regression.py