├── FSDET_DATASET.md ├── LICENSE ├── README.md ├── pipeline.png ├── playground └── fsdet │ ├── coco │ └── retentive_rcnn │ │ ├── 10shot │ │ ├── seed0 │ │ │ ├── README.md │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed1 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed2 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed3 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed4 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed5 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed6 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed7 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed8 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ └── seed9 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── 30shot │ │ ├── seed0 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed1 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed2 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed3 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed4 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed5 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed6 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed7 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ ├── seed8 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ │ ├── dataset.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── metadata.py │ │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ │ ├── .utils.py.swp │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── roi_heads.py │ │ │ │ ├── rpn.py │ │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ └── seed9 │ │ │ ├── combine_rpn.py │ │ │ ├── config.py │ │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ │ ├── net.py │ │ │ ├── rcnn.py │ │ │ ├── run.sh │ │ │ └── test_net.py │ │ └── 5shot │ │ ├── seed0 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── seed1 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── seed2 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── seed3 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── seed4 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── seed5 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── seed6 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── seed7 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── seed8 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ ├── metadata.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ └── seed9 │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dataset.cpython-36.pyc │ │ │ ├── evaluator.cpython-36.pyc │ │ │ ├── metadata.cpython-36.pyc │ │ │ └── paths_route.cpython-36.pyc │ │ ├── dataset.py │ │ ├── evaluator.py │ │ ├── metadata.py │ │ └── paths_route.py │ │ ├── modeling │ │ ├── .utils.py.swp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ ├── rpn.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── fast_rcnn.py │ │ ├── roi_heads.py │ │ ├── rpn.py │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ └── voc │ ├── split1 │ └── retentive_rcnn │ │ ├── 10shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── 1shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── 2shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── 3shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ └── 5shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dataset.cpython-36.pyc │ │ │ ├── evaluator.cpython-36.pyc │ │ │ ├── metadata.cpython-36.pyc │ │ │ └── paths_route.cpython-36.pyc │ │ ├── dataset.py │ │ ├── evaluator.py │ │ └── paths_route.py │ │ ├── modeling │ │ ├── .utils.py.swp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ ├── rpn.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── fast_rcnn.py │ │ ├── roi_heads.py │ │ ├── rpn.py │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ ├── split2 │ └── retentive_rcnn │ │ ├── 10shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── 1shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── 2shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ ├── 3shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── dataset.cpython-36.pyc │ │ │ │ ├── evaluator.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ └── paths_route.cpython-36.pyc │ │ │ ├── dataset.py │ │ │ ├── evaluator.py │ │ │ └── paths_route.py │ │ ├── modeling │ │ │ ├── .utils.py.swp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ │ ├── rpn.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── fast_rcnn.py │ │ │ ├── roi_heads.py │ │ │ ├── rpn.py │ │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ │ └── 5shot │ │ ├── combine_rpn.py │ │ ├── config.py │ │ ├── dataset │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dataset.cpython-36.pyc │ │ │ ├── evaluator.cpython-36.pyc │ │ │ ├── metadata.cpython-36.pyc │ │ │ └── paths_route.cpython-36.pyc │ │ ├── dataset.py │ │ ├── evaluator.py │ │ └── paths_route.py │ │ ├── modeling │ │ ├── .utils.py.swp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ ├── rpn.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── fast_rcnn.py │ │ ├── roi_heads.py │ │ ├── rpn.py │ │ └── utils.py │ │ ├── net.py │ │ ├── rcnn.py │ │ ├── run.sh │ │ └── test_net.py │ └── split3 │ └── retentive_rcnn │ ├── 10shot │ ├── combine_rpn.py │ ├── config.py │ ├── dataset │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dataset.cpython-36.pyc │ │ │ ├── evaluator.cpython-36.pyc │ │ │ ├── metadata.cpython-36.pyc │ │ │ └── paths_route.cpython-36.pyc │ │ ├── dataset.py │ │ ├── evaluator.py │ │ └── paths_route.py │ ├── modeling │ │ ├── .utils.py.swp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ ├── rpn.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── fast_rcnn.py │ │ ├── roi_heads.py │ │ ├── rpn.py │ │ └── utils.py │ ├── net.py │ ├── rcnn.py │ ├── run.sh │ └── test_net.py │ ├── 1shot │ ├── combine_rpn.py │ ├── config.py │ ├── dataset │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dataset.cpython-36.pyc │ │ │ ├── evaluator.cpython-36.pyc │ │ │ ├── metadata.cpython-36.pyc │ │ │ └── paths_route.cpython-36.pyc │ │ ├── dataset.py │ │ ├── evaluator.py │ │ └── paths_route.py │ ├── modeling │ │ ├── .utils.py.swp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ ├── rpn.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── fast_rcnn.py │ │ ├── roi_heads.py │ │ ├── rpn.py │ │ └── utils.py │ ├── net.py │ ├── rcnn.py │ ├── run.sh │ └── test_net.py │ ├── 2shot │ ├── combine_rpn.py │ ├── config.py │ ├── dataset │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dataset.cpython-36.pyc │ │ │ ├── evaluator.cpython-36.pyc │ │ │ ├── metadata.cpython-36.pyc │ │ │ └── paths_route.cpython-36.pyc │ │ ├── dataset.py │ │ ├── evaluator.py │ │ └── paths_route.py │ ├── modeling │ │ ├── .utils.py.swp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ ├── rpn.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── fast_rcnn.py │ │ ├── roi_heads.py │ │ ├── rpn.py │ │ └── utils.py │ ├── net.py │ ├── rcnn.py │ ├── run.sh │ └── test_net.py │ ├── 3shot │ ├── combine_rpn.py │ ├── config.py │ ├── dataset │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dataset.cpython-36.pyc │ │ │ ├── evaluator.cpython-36.pyc │ │ │ ├── metadata.cpython-36.pyc │ │ │ └── paths_route.cpython-36.pyc │ │ ├── dataset.py │ │ ├── evaluator.py │ │ └── paths_route.py │ ├── modeling │ │ ├── .utils.py.swp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fast_rcnn.cpython-36.pyc │ │ │ ├── roi_heads.cpython-36.pyc │ │ │ ├── rpn.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── fast_rcnn.py │ │ ├── roi_heads.py │ │ ├── rpn.py │ │ └── utils.py │ ├── net.py │ ├── rcnn.py │ ├── run.sh │ └── test_net.py │ └── 5shot │ ├── combine_rpn.py │ ├── config.py │ ├── dataset │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── dataset.cpython-36.pyc │ │ ├── evaluator.cpython-36.pyc │ │ ├── metadata.cpython-36.pyc │ │ └── paths_route.cpython-36.pyc │ ├── dataset.py │ ├── evaluator.py │ └── paths_route.py │ ├── modeling │ ├── .utils.py.swp │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── fast_rcnn.cpython-36.pyc │ │ ├── roi_heads.cpython-36.pyc │ │ ├── rpn.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ ├── fast_rcnn.py │ ├── roi_heads.py │ ├── rpn.py │ └── utils.py │ ├── net.py │ ├── rcnn.py │ ├── run.sh │ └── test_net.py └── register_pretrained_weights.sh /FSDET_DATASET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/FSDET_DATASET.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/README.md -------------------------------------------------------------------------------- /pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/pipeline.png -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/README.md -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed0/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed0/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed1/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed1/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed2/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed2/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed3/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed3/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed4/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed4/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed5/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed5/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed6/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed6/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed7/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed7/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed8/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed8/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/10shot/seed9/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/10shot/seed9/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed0/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed0/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed1/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed1/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed2/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed2/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed3/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed3/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed4/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed4/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed5/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed5/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed6/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed6/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed7/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed7/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed8/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed8/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/30shot/seed9/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/30shot/seed9/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed0/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed0/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed1/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed1/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed2/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed2/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed3/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed3/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed4/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed4/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed5/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed5/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed6/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed6/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed7/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed7/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed8/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed8/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/config.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/metadata.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/net.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/run.sh -------------------------------------------------------------------------------- /playground/fsdet/coco/retentive_rcnn/5shot/seed9/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/coco/retentive_rcnn/5shot/seed9/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/10shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/10shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/1shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/1shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/2shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/2shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/3shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/3shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split1/retentive_rcnn/5shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split1/retentive_rcnn/5shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/10shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/10shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/1shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/1shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/2shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/2shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/3shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/3shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split2/retentive_rcnn/5shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split2/retentive_rcnn/5shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/fast_rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/roi_heads.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/10shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/10shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/dataset/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/dataset/evaluator.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/dataset/paths_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/dataset/paths_route.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/modeling/.utils.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/modeling/.utils.py.swp -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/1shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/1shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/2shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/2shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/3shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/3shot/test_net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/combine_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/combine_rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/config.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/dataset/__init__.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/dataset/dataset.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/modeling/rpn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/modeling/utils.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/net.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/rcnn.py -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/run.sh -------------------------------------------------------------------------------- /playground/fsdet/voc/split3/retentive_rcnn/5shot/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/playground/fsdet/voc/split3/retentive_rcnn/5shot/test_net.py -------------------------------------------------------------------------------- /register_pretrained_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Megvii-BaseDetection/GFSD/HEAD/register_pretrained_weights.sh --------------------------------------------------------------------------------