.gitignore
LICENSE
README.md
autotimm.png
mkdocs.yml
pyproject.toml
test_list_optimizers.py
.github/workflows/docs-tags.yml
.github/workflows/docs.yml
.github/workflows/publish.yaml
docs/autotimm.png
docs/index.md
docs/api/backbone.md
docs/api/classifier.md
docs/api/data.md
docs/api/detection.md
docs/api/detection_data.md
docs/api/heads.md
docs/api/index.md
docs/api/loggers.md
docs/api/losses.md
docs/api/metrics.md
docs/api/segmentation.md
docs/api/trainer.md
docs/api/utils.md
docs/assets/favicon.png
docs/assets/logo.png
docs/examples/backbone-utilities.md
docs/examples/classification.md
docs/examples/data-handling.md
docs/examples/index.md
docs/examples/instance-segmentation.md
docs/examples/logging-metrics.md
docs/examples/object-detection.md
docs/examples/semantic-segmentation.md
docs/examples/training-utilities.md
docs/getting-started/installation.md
docs/getting-started/quickstart.md
docs/user-guide/logging.md
docs/user-guide/metrics.md
docs/user-guide/training.md
docs/user-guide/data-loading/image-classification-data.md
docs/user-guide/data-loading/index.md
docs/user-guide/data-loading/object-detection-data.md
docs/user-guide/data-loading/segmentation-data.md
docs/user-guide/inference/classification-inference.md
docs/user-guide/inference/index.md
docs/user-guide/inference/model-export.md
docs/user-guide/inference/object-detection-inference.md
docs/user-guide/models/image-classifier.md
docs/user-guide/models/index.md
docs/user-guide/models/instance-segmentation.md
docs/user-guide/models/object-detector.md
docs/user-guide/models/semantic-segmentation.md
examples/albumentations_cifar10.py
examples/albumentations_custom_folder.py
examples/auto_tuning.py
examples/backbone_discovery.py
examples/balanced_sampling.py
examples/classify_cifar10.py
examples/classify_custom_folder.py
examples/detailed_evaluation.py
examples/inference.py
examples/instance_segmentation.py
examples/mlflow_tracking.py
examples/multi_gpu_training.py
examples/multiple_loggers.py
examples/object_detection_coco.py
examples/object_detection_rtdetr.py
examples/object_detection_transformers.py
examples/semantic_segmentation.py
examples/vit_finetuning.py
src/autotimm/__init__.py
src/autotimm/backbone.py
src/autotimm/heads.py
src/autotimm/loggers.py
src/autotimm/metrics.py
src/autotimm/trainer.py
src/autotimm/utils.py
src/autotimm.egg-info/PKG-INFO
src/autotimm.egg-info/SOURCES.txt
src/autotimm.egg-info/dependency_links.txt
src/autotimm.egg-info/requires.txt
src/autotimm.egg-info/top_level.txt
src/autotimm/data/__init__.py
src/autotimm/data/datamodule.py
src/autotimm/data/dataset.py
src/autotimm/data/detection_datamodule.py
src/autotimm/data/detection_dataset.py
src/autotimm/data/detection_transforms.py
src/autotimm/data/instance_datamodule.py
src/autotimm/data/instance_dataset.py
src/autotimm/data/segmentation_datamodule.py
src/autotimm/data/segmentation_dataset.py
src/autotimm/data/segmentation_transforms.py
src/autotimm/data/transforms.py
src/autotimm/losses/__init__.py
src/autotimm/losses/detection.py
src/autotimm/losses/segmentation.py
src/autotimm/tasks/__init__.py
src/autotimm/tasks/classification.py
src/autotimm/tasks/instance_segmentation.py
src/autotimm/tasks/object_detection.py
src/autotimm/tasks/semantic_segmentation.py
tests/__init__.py
tests/test_backbone.py
tests/test_classification.py
tests/test_datamodule.py
tests/test_import_aliases.py
tests/test_loggers.py
tests/test_metrics.py
tests/test_segmentation_heads.py
tests/test_segmentation_losses.py
tests/test_semantic_segmentation.py
tests/test_trainer.py