├── .gitignore ├── LICENSE ├── README.md ├── dummy_albu_mapper.py ├── requirements.txt └── sample-detection-albu-config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denilv/detectron2-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denilv/detectron2-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denilv/detectron2-helpers/HEAD/README.md -------------------------------------------------------------------------------- /dummy_albu_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denilv/detectron2-helpers/HEAD/dummy_albu_mapper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch==1.3.1 2 | albumentations=0.4.3 3 | numpy==1.17.4 -------------------------------------------------------------------------------- /sample-detection-albu-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denilv/detectron2-helpers/HEAD/sample-detection-albu-config.json --------------------------------------------------------------------------------