gitextract_n6ts7o2q/ ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── adapteacher/ │ ├── __init__.py │ ├── checkpoint/ │ │ └── detection_checkpoint.py │ ├── config.py │ ├── data/ │ │ ├── __init__.py │ │ ├── build.py │ │ ├── common.py │ │ ├── dataset_mapper.py │ │ ├── datasets/ │ │ │ ├── builtin.py │ │ │ └── cityscapes_foggy.py │ │ ├── detection_utils.py │ │ └── transforms/ │ │ └── augmentation_impl.py │ ├── engine/ │ │ ├── hooks.py │ │ ├── probe.py │ │ └── trainer.py │ ├── evaluation/ │ │ ├── __init__.py │ │ ├── coco_evaluation.py │ │ └── pascal_voc_evaluation.py │ ├── modeling/ │ │ ├── meta_arch/ │ │ │ ├── rcnn.py │ │ │ ├── ts_ensemble.py │ │ │ └── vgg.py │ │ ├── proposal_generator/ │ │ │ └── rpn.py │ │ └── roi_heads/ │ │ ├── fast_rcnn.py │ │ └── roi_heads.py │ └── solver/ │ ├── build.py │ └── lr_scheduler.py ├── configs/ │ ├── Base-RCNN-C4.yaml │ ├── faster_rcnn_R101_cross_clipart.yaml │ ├── faster_rcnn_R101_cross_clipart_b4.yaml │ ├── faster_rcnn_R101_cross_water.yaml │ └── faster_rcnn_VGG_cross_city.yaml ├── prod_lib/ │ ├── TARGETS │ ├── config/ │ │ └── defaults.py │ ├── data/ │ │ ├── builtin.py │ │ └── cityscapes_foggy.py │ ├── engine/ │ │ ├── probe.py │ │ └── trainer.py │ ├── evaluation/ │ │ ├── __init__.py │ │ ├── coco_evaluation.py │ │ └── pascal_voc_evaluation.py │ ├── modeling/ │ │ ├── daobj_rcnn.py │ │ └── vgg.py │ └── runner/ │ ├── __init__.py │ └── runner.py └── train_net.py