├── README.md ├── cfgs ├── inline_cswin_b.yaml ├── inline_cswin_b_384.yaml ├── inline_cswin_s.yaml ├── inline_cswin_t.yaml ├── inline_deit_b.yaml ├── inline_deit_s.yaml ├── inline_deit_t.yaml ├── inline_pvt_b.yaml ├── inline_pvt_m.yaml ├── inline_pvt_s.yaml ├── inline_pvt_t.yaml ├── inline_swin_b.yaml ├── inline_swin_b_384.yaml ├── inline_swin_s.yaml └── inline_swin_t.yaml ├── config.py ├── data ├── __init__.py ├── build.py ├── cached_image_folder.py ├── samplers.py └── zipreader.py ├── figures ├── fig1_injectivity.png ├── fig2_cls.png └── fig3_speed.png ├── logger.py ├── lr_scheduler.py ├── main.py ├── main_ema.py ├── models ├── __init__.py ├── build.py ├── inline_cswin.py ├── inline_deit.py ├── inline_pvt.py └── inline_swin.py ├── optimizer.py ├── utils.py └── utils_ema.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/README.md -------------------------------------------------------------------------------- /cfgs/inline_cswin_b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_cswin_b.yaml -------------------------------------------------------------------------------- /cfgs/inline_cswin_b_384.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_cswin_b_384.yaml -------------------------------------------------------------------------------- /cfgs/inline_cswin_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_cswin_s.yaml -------------------------------------------------------------------------------- /cfgs/inline_cswin_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_cswin_t.yaml -------------------------------------------------------------------------------- /cfgs/inline_deit_b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_deit_b.yaml -------------------------------------------------------------------------------- /cfgs/inline_deit_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_deit_s.yaml -------------------------------------------------------------------------------- /cfgs/inline_deit_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_deit_t.yaml -------------------------------------------------------------------------------- /cfgs/inline_pvt_b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_pvt_b.yaml -------------------------------------------------------------------------------- /cfgs/inline_pvt_m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_pvt_m.yaml -------------------------------------------------------------------------------- /cfgs/inline_pvt_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_pvt_s.yaml -------------------------------------------------------------------------------- /cfgs/inline_pvt_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_pvt_t.yaml -------------------------------------------------------------------------------- /cfgs/inline_swin_b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_swin_b.yaml -------------------------------------------------------------------------------- /cfgs/inline_swin_b_384.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_swin_b_384.yaml -------------------------------------------------------------------------------- /cfgs/inline_swin_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_swin_s.yaml -------------------------------------------------------------------------------- /cfgs/inline_swin_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/cfgs/inline_swin_t.yaml -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/config.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/data/build.py -------------------------------------------------------------------------------- /data/cached_image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/data/cached_image_folder.py -------------------------------------------------------------------------------- /data/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/data/samplers.py -------------------------------------------------------------------------------- /data/zipreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/data/zipreader.py -------------------------------------------------------------------------------- /figures/fig1_injectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/figures/fig1_injectivity.png -------------------------------------------------------------------------------- /figures/fig2_cls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/figures/fig2_cls.png -------------------------------------------------------------------------------- /figures/fig3_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/figures/fig3_speed.png -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/logger.py -------------------------------------------------------------------------------- /lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/lr_scheduler.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/main.py -------------------------------------------------------------------------------- /main_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/main_ema.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/models/build.py -------------------------------------------------------------------------------- /models/inline_cswin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/models/inline_cswin.py -------------------------------------------------------------------------------- /models/inline_deit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/models/inline_deit.py -------------------------------------------------------------------------------- /models/inline_pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/models/inline_pvt.py -------------------------------------------------------------------------------- /models/inline_swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/models/inline_swin.py -------------------------------------------------------------------------------- /optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/optimizer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/utils.py -------------------------------------------------------------------------------- /utils_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeapLabTHU/InLine/HEAD/utils_ema.py --------------------------------------------------------------------------------