├── .gitattributes ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── VLMEvalKit ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── assets │ ├── LOGO.svg │ └── apple.jpg ├── docs │ ├── en │ │ ├── Development.md │ │ └── Quickstart.md │ ├── ja │ │ └── README_ja.md │ └── zh-CN │ │ ├── .readthedocs.yaml │ │ ├── Makefile │ │ ├── README_zh-CN.md │ │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ ├── image │ │ │ ├── logo.svg │ │ │ └── logo_icon.svg │ │ └── js │ │ │ └── custom.js │ │ ├── _templates │ │ ├── 404.html │ │ ├── autosummary │ │ │ └── class.rst │ │ └── callable.rst │ │ ├── advanced_guides │ │ └── Development_zh-CN.md │ │ ├── conf.py │ │ ├── cp_origin_docs.sh │ │ ├── docutils.conf │ │ ├── get_started │ │ └── Quickstart_zh-CN.md │ │ └── index.rst ├── requirements.txt ├── requirements │ └── docs.txt ├── run.py ├── scripts │ ├── AI2D_preproc.ipynb │ ├── apires_scan.py │ ├── auto_run.py │ ├── cover.sh │ ├── mmb_eval_gradio.py │ ├── run.sh │ ├── srun.sh │ ├── summarize.py │ └── visualize.ipynb ├── setup.py └── vlmeval │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── base.py │ ├── claude.py │ ├── cloudwalk.py │ ├── gemini.py │ ├── glm_vision.py │ ├── gpt.py │ ├── hf_chat_model.py │ ├── hunyuan.py │ ├── qwen_api.py │ ├── qwen_vl_api.py │ ├── reka.py │ ├── sensechat_vision.py │ └── stepai.py │ ├── config.py │ ├── dataset │ ├── __init__.py │ ├── dude.py │ ├── image_base.py │ ├── image_caption.py │ ├── image_mcq.py │ ├── image_mt.py │ ├── image_vqa.py │ ├── image_yorn.py │ ├── mmbench_video.py │ ├── mmlongbench.py │ ├── slidevqa.py │ ├── text_base.py │ ├── text_mcq.py │ ├── utils │ │ ├── __init__.py │ │ ├── judge_util.py │ │ ├── llavabench.py │ │ ├── mathv.py │ │ ├── mathvista.py │ │ ├── mmbench_video.py │ │ ├── mmdu.py │ │ ├── mmvet.py │ │ ├── multiple_choice.py │ │ ├── ocrbench.py │ │ ├── videomme.py │ │ ├── vqa_eval.py │ │ └── yorn.py │ ├── vcr.py │ ├── video_base.py │ └── videomme.py │ ├── inference.py │ ├── inference_mt.py │ ├── inference_video.py │ ├── smp │ ├── __init__.py │ ├── file.py │ ├── log.py │ ├── misc.py │ └── vlm.py │ ├── tools.py │ ├── utils │ ├── __init__.py │ ├── matching_util.py │ ├── mp_util.py │ └── result_transfer.py │ └── vlm │ ├── __init__.py │ ├── base.py │ ├── bunnyllama3.py │ ├── cambrian.py │ ├── chameleon.py │ ├── cogvlm.py │ ├── deepseek_vl.py │ ├── emu.py │ ├── idefics.py │ ├── instructblip.py │ ├── internvl_chat.py │ ├── llava │ ├── __init__.py │ ├── llava.py │ └── llava_xtuner.py │ ├── mantis.py │ ├── mgm.py │ ├── minicpm_v.py │ ├── minigpt4.py │ ├── misc │ ├── blip2_instruct_vicuna13b.yaml │ ├── blip2_instruct_vicuna7b.yaml │ ├── minigpt4_13b_eval.yaml │ ├── minigpt4_7b_eval.yaml │ └── minigptv2_eval.yaml │ ├── mmalaya.py │ ├── monkey.py │ ├── mplug_owl2.py │ ├── omnilmm.py │ ├── open_flamingo.py │ ├── ovis.py │ ├── paligemma.py │ ├── pandagpt.py │ ├── phi3_vision.py │ ├── qh_360vl.py │ ├── qwen_vl.py │ ├── transcore_m.py │ ├── video_llm │ ├── __init__.py │ └── video_llava.py │ ├── vila.py │ ├── visualglm.py │ ├── vxverse.py │ ├── wemm.py │ ├── xcomposer │ ├── __init__.py │ ├── sharecaptioner.py │ ├── xcomposer.py │ ├── xcomposer2.py │ ├── xcomposer2_4KHD.py │ └── xcomposer2d5.py │ └── yi_vl.py ├── assets ├── EagleVision.png ├── ans.png ├── gradio_demo.png ├── introduction.png └── logo.png ├── configs ├── EagleVision │ ├── EagleVision_1B-fair1m.py │ ├── EagleVision_1B-mar20.py │ ├── EagleVision_1B-shiprsimagenet.py │ ├── EagleVision_2B-fair1m.py │ ├── EagleVision_2B-mar20.py │ ├── EagleVision_2B-shiprsimagenet.py │ ├── EagleVision_4B-fair1m.py │ ├── EagleVision_4B-mar20.py │ ├── EagleVision_4B-shiprsimagenet.py │ ├── EagleVision_7B-fair1m.py │ ├── EagleVision_7B-mar20.py │ ├── EagleVision_7B-shiprsimagenet.py │ └── _base_ │ │ ├── default_runtime.py │ │ ├── dota_rr.py │ │ ├── dota_rr_ms.py │ │ ├── fair1m_Task1.py │ │ ├── fair1m_Task2.py │ │ ├── hrsc_rr.py │ │ ├── mar20.py │ │ ├── schedule_1x.py │ │ ├── schedule_3x.py │ │ └── shiprsimagenet.py ├── _base_ │ ├── datasets │ │ ├── dior.py │ │ ├── dota.py │ │ ├── dota_coco.py │ │ ├── dota_ms.py │ │ ├── dota_qbox.py │ │ ├── dotav15.py │ │ ├── dotav2.py │ │ ├── hrsc.py │ │ ├── hrsid.py │ │ ├── rsdd.py │ │ ├── srsdd.py │ │ └── ssdd.py │ ├── default_runtime.py │ └── schedules │ │ ├── schedule_1x.py │ │ ├── schedule_3x.py │ │ ├── schedule_40e.py │ │ └── schedule_6x.py ├── cfa │ ├── README.md │ ├── cfa-qbox_r50_fpn_1x_dota.py │ ├── cfa-qbox_r50_fpn_40e_dota.py │ └── metafile.yml ├── convnext │ ├── README.md │ ├── metafile.yml │ └── rotated-retinanet-rbox-le90_convnext-tiny_fpn_kld-stable_adamw-1x_dota.py ├── csl │ ├── README.md │ ├── metafile.yml │ └── rotated-retinanet-rbox-le90_r50_fpn_csl-gaussian_amp-1x_dota.py ├── gliding_vertex │ ├── README.md │ ├── gliding-vertex-qbox_r50_fpn_1x_dota.py │ ├── gliding-vertex-rbox_r50_fpn_1x_dota.py │ └── metafile.yml ├── gwd │ ├── README.md │ ├── metafile.yml │ ├── rotated-retinanet-hbox-oc_r50_fpn_gwd_1x_dota.py │ ├── rotated-retinanet-rbox-le135_r50_fpn_gwd_1x_dota.py │ └── rotated-retinanet-rbox-le90_r50_fpn_gwd_1x_dota.py ├── h2rbox │ ├── README.md │ ├── dior │ │ └── h2rbox-le90_r50_fpn_adamw-1x_dior.py │ ├── dotav15 │ │ ├── h2rbox-le90_r50_fpn_adamw-1x_dotav15.py │ │ └── h2rbox-le90_r50_fpn_adamw-3x_dotav15.py │ ├── dotav2 │ │ ├── h2rbox-le90_r50_fpn_adamw-1x_dotav2.py │ │ └── h2rbox-le90_r50_fpn_adamw-3x_dotav2.py │ ├── h2rbox-le90_r50_fpn_adamw-1x_dota-ms.py │ ├── h2rbox-le90_r50_fpn_adamw-1x_dota.py │ ├── h2rbox-le90_r50_fpn_adamw-3x_dota.py │ └── metafile.yml ├── h2rbox_v2 │ ├── README.md │ ├── h2rbox_v2-le90_r50_fpn-1x_dota.py │ ├── h2rbox_v2-le90_r50_fpn-1x_dotav15.py │ ├── h2rbox_v2-le90_r50_fpn-1x_dotav2.py │ ├── h2rbox_v2-le90_r50_fpn-6x_hrsc.py │ ├── h2rbox_v2-le90_r50_fpn_ms_rr-1x_dota.py │ ├── h2rbox_v2-le90_r50_fpn_rr-6x_hrsc.py │ └── metafile.yml ├── kfiou │ ├── README.md │ ├── metafile.yml │ ├── r3det-oc_r50_fpn_kfiou-ln_1x_dota.py │ ├── roi-trans-le90_r50_fpn_kfiou-ln_1x_dota.py │ ├── rotated-retinanet-hbox-le135_r50_fpn_kfiou_1x_dota.py │ ├── rotated-retinanet-hbox-le90_r50_fpn_kfiou_1x_dota.py │ ├── rotated-retinanet-hbox-oc_r50_fpn_kfiou_1x_dota.py │ └── s2anet-le135_r50_fpn_kfiou-ln_1x_dota.py ├── kld │ ├── README.md │ ├── metafile.yml │ ├── r3det-oc_r50_fpn_kld-stable_1x_dota.py │ ├── r3det-oc_r50_fpn_kld_1x_dota.py │ ├── r3det-tiny-oc_r50_fpn_kld_1x_dota.py │ ├── rotated-retinanet-hbox-oc_r50_fpn_kld-stable_1x_dota.py │ ├── rotated-retinanet-hbox-oc_r50_fpn_kld-stable_rr-6x_hrsc.py │ ├── rotated-retinanet-hbox-oc_r50_fpn_kld_1x_dota.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_kld-stable_1x_dota.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_kld-stable_adamw-1x_dota.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_kld-stable_rr-6x_hrsc.py │ └── rotated-retinanet-rbox-le90_r50_fpn_kld_1x_dota.py ├── oriented_rcnn │ ├── README.md │ ├── metafile.yml │ ├── oriented-rcnn-le90_r50_fpn_1x_dota.py │ ├── oriented-rcnn-le90_r50_fpn_6x_hrsid.py │ ├── oriented-rcnn-le90_r50_fpn_6x_rsdd.py │ ├── oriented-rcnn-le90_r50_fpn_6x_srsdd.py │ ├── oriented-rcnn-le90_r50_fpn_6x_ssdd.py │ ├── oriented-rcnn-le90_r50_fpn_amp-1x_dota.py │ └── oriented-rcnn-le90_swin-tiny_fpn_1x_dota.py ├── oriented_reppoints │ ├── README.md │ ├── metafile.yml │ ├── oriented-reppoints-qbox_r50_fpn_1x_dota.py │ └── oriented-reppoints-qbox_r50_fpn_mstrain-40e_dota.py ├── psc │ ├── README.md │ ├── metafile.yml │ ├── rotated-fcos-hbox-le90_r50_fpn_psc-dual_1x_dota.py │ ├── rotated-fcos-hbox-le90_r50_fpn_psc_rr-6x_hrsc.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_psc-dual_amp-1x_dota.py │ └── rotated-retinanet-rbox-le90_r50_fpn_psc_rr-6x_hrsc.py ├── r3det │ ├── README.md │ ├── metafile.yml │ ├── r3det-oc_r50_fpn_1x_dota.py │ ├── r3det-refine-oc_r50_fpn_1x_dota.py │ └── r3det-tiny-oc_r50_fpn_1x_dota.py ├── redet │ ├── README.md │ ├── metafile.yml │ ├── redet-le90_re50_refpn_1x_dota.py │ ├── redet-le90_re50_refpn_3x_hrsc.py │ ├── redet-le90_re50_refpn_amp-1x_dota.py │ └── redet-le90_re50_refpn_rr-1x_dota-ms.py ├── roi_trans │ ├── README.md │ ├── metafile.yml │ ├── roi-trans-le135_r50_fpn_1x_dota.py │ ├── roi-trans-le90_r50_fpn_1x_dota-ms.py │ ├── roi-trans-le90_r50_fpn_1x_dota.py │ ├── roi-trans-le90_r50_fpn_amp-1x_dota.py │ ├── roi-trans-le90_r50_fpn_rr-1x_dota-ms.py │ ├── roi-trans-le90_swin-tiny_fpn_1x_dota.py │ └── roi-trans-oc_r50_fpn_1x_dota.py ├── rotated_atss │ ├── README.md │ ├── metafile.yml │ └── rotated-atss-le90_r50_fpn_1x_dota.py ├── rotated_faster_rcnn │ ├── README.md │ ├── metafile.yml │ └── rotated-faster-rcnn-le90_r50_fpn_1x_dota.py ├── rotated_fcos │ ├── README.md │ ├── metafile.yml │ ├── rotated-fcos-hbox-le90_r50_fpn_1x_dota.py │ ├── rotated-fcos-hbox-le90_r50_fpn_csl-gaussian_1x_dota.py │ ├── rotated-fcos-le90_r50_fpn_1x_dota.py │ ├── rotated-fcos-le90_r50_fpn_kld_1x_dota.py │ └── rotated-fcos-le90_r50_fpn_rr-6x_hrsc.py ├── rotated_reppoints │ ├── README.md │ ├── metafile.yml │ └── rotated-reppoints-qbox_r50_fpn_1x_dota.py ├── rotated_retinanet │ ├── README.md │ ├── metafile.yml │ ├── rotated-retinanet-hbox-le135_r50_fpn_1x_dota.py │ ├── rotated-retinanet-hbox-le90_r50_fpn_1x_dota.py │ ├── rotated-retinanet-hbox-oc_r50_fpn_1x_dota.py │ ├── rotated-retinanet-hbox-oc_r50_fpn_rr-6x_hrsc.py │ ├── rotated-retinanet-rbox-le135_r50_fpn_1x_dota.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_1x_dior.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_1x_dota.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_amp-1x_dota.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_rr-1x_dota-ms.py │ ├── rotated-retinanet-rbox-le90_r50_fpn_rr-6x_hrsc.py │ ├── rotated-retinanet-rbox-oc_r50_fpn_1x_dior.py │ └── rotated-retinanet-rbox-oc_r50_fpn_1x_dota.py ├── rotated_rtmdet │ ├── README.md │ ├── _base_ │ │ ├── default_runtime.py │ │ ├── dota_rr.py │ │ ├── dota_rr_ms.py │ │ ├── hrsc_rr.py │ │ └── schedule_3x.py │ ├── metafile.yml │ ├── rotated_rtmdet_l-100e-aug-dota.py │ ├── rotated_rtmdet_l-300e-aug-hrsc.py │ ├── rotated_rtmdet_l-3x-dota.py │ ├── rotated_rtmdet_l-3x-dota_ms.py │ ├── rotated_rtmdet_l-9x-hrsc.py │ ├── rotated_rtmdet_l-coco_pretrain-3x-dota_ms.py │ ├── rotated_rtmdet_m-3x-dota.py │ ├── rotated_rtmdet_m-3x-dota_ms.py │ ├── rotated_rtmdet_s-3x-dota.py │ ├── rotated_rtmdet_s-3x-dota_ms.py │ ├── rotated_rtmdet_tiny-300e-aug-hrsc.py │ ├── rotated_rtmdet_tiny-3x-dota.py │ ├── rotated_rtmdet_tiny-3x-dota_ms.py │ └── rotated_rtmdet_tiny-9x-hrsc.py ├── s2anet │ ├── README.md │ ├── cascade-s2anet-le135_r50_fpn_1x_dota.py │ ├── metafile.yml │ ├── s2anet-le135_r50_fpn_1x_dota.py │ ├── s2anet-le135_r50_fpn_3x_hrsc.py │ ├── s2anet-le135_r50_fpn_amp-1x_dota.py │ └── s2anet-le90_r50_fpn_1x_dota.py └── sasm_reppoints │ ├── README.md │ ├── metafile.yml │ └── sasm-reppoints-qbox_r50_fpn_1x_dota.py ├── demo ├── app.py ├── demo1.png ├── demo2.png └── model_utils.py ├── docker ├── Dockerfile └── serve │ ├── Dockerfile │ ├── config.properties │ └── entrypoint.sh ├── docs ├── en │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── image │ │ │ └── mmrotate-logo.png │ ├── advanced_guides │ │ ├── conventions.md │ │ ├── customize_dataset.md │ │ ├── customize_losses.md │ │ ├── customize_models.md │ │ ├── customize_runtime.md │ │ ├── customize_transforms.md │ │ ├── data_flow.md │ │ ├── datasets.md │ │ ├── engine.md │ │ ├── evaluation.md │ │ ├── how_to.md │ │ ├── index.rst │ │ ├── models.md │ │ └── transforms.md │ ├── api.rst │ ├── conf.py │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── migration.md │ ├── model_zoo.md │ ├── notes │ │ ├── changelog.md │ │ ├── changelog_v0.x.md │ │ ├── contribution_guide.md │ │ ├── faq.md │ │ └── projects.md │ ├── overview.md │ ├── stat.py │ ├── switch_language.md │ └── user_guides │ │ ├── config.md │ │ ├── dataset_prepare.md │ │ ├── deploy.md │ │ ├── index.rst │ │ ├── inference.md │ │ ├── label_studio.md │ │ ├── test_results_submission.md │ │ ├── train_test.md │ │ ├── useful_tools.md │ │ └── visualization.md └── zh_cn │ ├── _static │ ├── css │ │ └── readthedocs.css │ └── image │ │ └── mmrotate-logo.png │ ├── advanced_guides │ ├── conventions.md │ ├── customize_dataset.md │ ├── customize_losses.md │ ├── customize_models.md │ ├── customize_runtime.md │ ├── customize_transforms.md │ ├── data_flow.md │ ├── datasets.md │ ├── engine.md │ ├── evaluation.md │ ├── how_to.md │ ├── index.rst │ ├── models.md │ └── transforms.md │ ├── api.rst │ ├── conf.py │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── migration.md │ ├── model_zoo.md │ ├── notes │ ├── contribution_guide.md │ ├── faq.md │ └── projects.md │ ├── overview.md │ ├── stat.py │ ├── switch_language.md │ └── user_guides │ ├── config.md │ ├── dataset_prepare.md │ ├── deploy.md │ ├── index.rst │ ├── inference.md │ ├── label_studio.md │ ├── test_results_submission.md │ ├── train_test.md │ ├── useful_tools.md │ └── visualization.md ├── internvl ├── conversation.py ├── dist_utils.py ├── model │ ├── __init__.py │ ├── internlm2 │ │ ├── configuration_internlm2.py │ │ ├── modeling_internlm2.py │ │ ├── tokenization_internlm2.py │ │ └── tokenization_internlm2_fast.py │ ├── internvl_chat │ │ ├── __init__.py │ │ ├── configuration_intern_vit.py │ │ ├── configuration_internvl_chat.py │ │ ├── flash_attention.py │ │ ├── modeling_intern_vit.py │ │ └── modeling_internvl_chat.py │ └── phi3 │ │ ├── configuration_phi3.py │ │ └── modeling_phi3.py ├── patch │ ├── __init__.py │ ├── internlm2_packed_training_patch.py │ ├── internvit_liger_monkey_patch.py │ ├── llama2_flash_attn_monkey_patch.py │ ├── llama_flash_attn_monkey_patch.py │ ├── llama_packed_training_patch.py │ ├── llama_rmsnorm_monkey_patch.py │ ├── pad_data_collator.py │ ├── phi3_packed_training_patch.py │ ├── qwen2_packed_training_patch.py │ ├── train_dataloader_patch.py │ └── train_sampler_patch.py └── train │ ├── __init__.py │ ├── constants.py │ ├── dataset.py │ ├── dataset_packed.py │ ├── internvl_chat_dpo.py │ ├── internvl_chat_finetune.py │ ├── internvl_chat_pretrain.py │ └── trainer_dpo.py ├── mmrotate ├── __init__.py ├── apis │ ├── __init__.py │ └── inference.py ├── datasets │ ├── __init__.py │ ├── dior.py │ ├── dota.py │ ├── fair1m.py │ ├── hrsc.py │ ├── mar20.py │ ├── shiprsimagenet.py │ ├── transforms │ │ ├── __init__.py │ │ ├── loading.py │ │ └── transforms.py │ └── utils.py ├── evaluation │ ├── __init__.py │ ├── functional │ │ ├── __init__.py │ │ └── mean_ap.py │ └── metrics │ │ ├── EV_bench.py │ │ ├── __init__.py │ │ ├── dota_metric.py │ │ └── rotated_coco_metric.py ├── models │ ├── EagleVision │ │ ├── EVDetector.py │ │ ├── EVHead.py │ │ ├── EVProHead.py │ │ └── __init__.py │ ├── __init__.py │ ├── backbones │ │ ├── __init__.py │ │ └── re_resnet.py │ ├── data_preprocessors │ │ ├── __init__.py │ │ └── data_preprocessor.py │ ├── dense_heads │ │ ├── __init__.py │ │ ├── angle_branch_retina_head.py │ │ ├── cfa_head.py │ │ ├── h2rbox_head.py │ │ ├── h2rbox_v2_head.py │ │ ├── oriented_reppoints_head.py │ │ ├── oriented_rpn_head.py │ │ ├── r3_head.py │ │ ├── rotated_atss_head.py │ │ ├── rotated_fcos_head.py │ │ ├── rotated_reppoints_head.py │ │ ├── rotated_retina_head.py │ │ ├── rotated_rtmdet_head.py │ │ ├── s2a_head.py │ │ └── sam_reppoints_head.py │ ├── detectors │ │ ├── __init__.py │ │ ├── h2rbox.py │ │ ├── h2rbox_v2.py │ │ └── refine_single_stage.py │ ├── layers │ │ ├── __init__.py │ │ └── align.py │ ├── losses │ │ ├── __init__.py │ │ ├── convex_giou_loss.py │ │ ├── gaussian_dist_loss.py │ │ ├── gaussian_dist_loss_v1.py │ │ ├── h2rbox_consistency_loss.py │ │ ├── h2rbox_v2_consistency_loss.py │ │ ├── kf_iou_loss.py │ │ ├── rotated_iou_loss.py │ │ ├── smooth_focal_loss.py │ │ └── spatial_border_loss.py │ ├── necks │ │ ├── __init__.py │ │ └── re_fpn.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── bbox_heads │ │ │ ├── __init__.py │ │ │ ├── convfc_rbbox_head.py │ │ │ └── gv_bbox_head.py │ │ ├── gv_ratio_roi_head.py │ │ └── roi_extractors │ │ │ ├── __init__.py │ │ │ └── rotate_single_level_roi_extractor.py │ ├── task_modules │ │ ├── __init__.py │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── convex_assigner.py │ │ │ ├── max_convex_iou_assigner.py │ │ │ ├── rotate_iou2d_calculator.py │ │ │ ├── rotated_atss_assigner.py │ │ │ └── sas_assigner.py │ │ ├── coders │ │ │ ├── __init__.py │ │ │ ├── angle_coder.py │ │ │ ├── delta_midpointoffset_rbbox_coder.py │ │ │ ├── delta_xywh_hbbox_coder.py │ │ │ ├── delta_xywh_qbbox_coder.py │ │ │ ├── delta_xywht_hbbox_coder.py │ │ │ ├── delta_xywht_rbbox_coder.py │ │ │ ├── distance_angle_point_coder.py │ │ │ └── gliding_vertex_coder.py │ │ └── prior_generators │ │ │ ├── __init__.py │ │ │ └── anchor_generator.py │ └── utils │ │ ├── __init__.py │ │ ├── enn.py │ │ ├── misc.py │ │ ├── orconv.py │ │ └── ripool.py ├── registry.py ├── structures │ ├── __init__.py │ └── bbox │ │ ├── __init__.py │ │ ├── bbox_overlaps.py │ │ ├── box_converters.py │ │ ├── quadri_boxes.py │ │ ├── rotated_boxes.py │ │ └── transforms.py ├── testing │ ├── __init__.py │ └── _utils.py ├── utils │ ├── __init__.py │ ├── collect_env.py │ ├── misc.py │ ├── patch │ │ ├── __init__.py │ │ ├── merge_results.py │ │ └── split.py │ └── setup_env.py ├── version.py └── visualization │ ├── __init__.py │ ├── local_visualizer.py │ └── palette.py ├── model-index.yml ├── requirements.txt ├── requirements ├── build.txt ├── docs.txt ├── mminstall.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── resources ├── mmrotate-logo.png ├── qq_group_qrcode.jpg └── zhihu_qrcode.jpg ├── results └── ans.png ├── setup.cfg ├── setup.py ├── tests ├── test_apis │ └── test_inference.py ├── test_datasets │ ├── test_dior.py │ ├── test_dota.py │ ├── test_hrsc.py │ └── test_transforms │ │ └── test_transforms.py ├── test_evaluation │ └── test_metrics │ │ ├── test_dota_metric.py │ │ └── test_rotated_coco_metric.py ├── test_models │ ├── test_backbones │ │ └── test_re_resnet.py │ ├── test_dense_heads │ │ ├── test_angle_branch_retina_head.py │ │ ├── test_cfa_head.py │ │ ├── test_h2rbox_head.py │ │ ├── test_oriented_reppoints.py │ │ ├── test_r3_head.py │ │ ├── test_rotated_atss_head.py │ │ ├── test_rotated_fcos_head.py │ │ ├── test_rotated_reppoints.py │ │ ├── test_rotated_retina_head.py │ │ ├── test_rotated_rtmdet_head.py │ │ ├── test_s2a_head.py │ │ └── test_sam_reppoints_head.py │ ├── test_detectors │ │ ├── test_h2rbox.py │ │ ├── test_refine_single_stage.py │ │ ├── test_single_stage.py │ │ └── test_two_stage.py │ ├── test_losses │ │ └── test_loss.py │ ├── test_necks │ │ └── test_re_fpn.py │ ├── test_roi_heads │ │ ├── test_bbox_head │ │ │ ├── test_convfc_rbbox_head.py │ │ │ └── test_gv_bbox_head.py │ │ └── test_gv_ratio_roi_head.py │ └── test_task_modules │ │ ├── test_assigners │ │ ├── test_convex_assigner.py │ │ ├── test_max_convex_iou_assigner.py │ │ ├── test_rotated_atss_assigner.py │ │ └── test_sas_assigner.py │ │ ├── test_coder │ │ ├── test_angle_coder.py │ │ ├── test_delta_midpointoffset_rbbox_coder.py │ │ ├── test_delta_xywh_hbbox_coder.py │ │ ├── test_delta_xywh_qbbox_coder.py │ │ ├── test_delta_xywht_hbbox_coder.py │ │ ├── test_delta_xywht_rbbox_coder.py │ │ └── test_gliding_vertex_coder.py │ │ ├── test_prior_generators │ │ └── test_anchor_generator.py │ │ └── test_rotated_iou2d_calculator.py ├── test_structures │ └── test_bbox │ │ ├── test_box_converters.py │ │ ├── test_quadri_boxes.py │ │ └── test_rotated_boxes.py └── test_visualization │ ├── test_local_visualizer.py │ └── test_palette.py └── tools ├── analysis_tools ├── analyze_logs.py ├── benchmark.py ├── browse_dataset.py ├── confusion_matrix.py └── get_flops.py ├── benchmark └── EVBench_evaluation.py ├── deployment ├── mmrotate2torchserve.py └── mmrotate_handler.py ├── dist_test.sh ├── dist_train.sh ├── infer.py ├── misc └── print_config.py ├── model_converters ├── convert_hf.py └── publish_model.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py └── train.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/README.md -------------------------------------------------------------------------------- /VLMEvalKit/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/.pre-commit-config.yaml -------------------------------------------------------------------------------- /VLMEvalKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/LICENSE -------------------------------------------------------------------------------- /VLMEvalKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/README.md -------------------------------------------------------------------------------- /VLMEvalKit/assets/LOGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/assets/LOGO.svg -------------------------------------------------------------------------------- /VLMEvalKit/assets/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/assets/apple.jpg -------------------------------------------------------------------------------- /VLMEvalKit/docs/en/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/en/Development.md -------------------------------------------------------------------------------- /VLMEvalKit/docs/en/Quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/en/Quickstart.md -------------------------------------------------------------------------------- /VLMEvalKit/docs/ja/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/ja/README_ja.md -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/.readthedocs.yaml -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/Makefile -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/README_zh-CN.md -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/_static/css/readthedocs.css -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/_static/image/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/_static/image/logo.svg -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/_static/image/logo_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/_static/image/logo_icon.svg -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/_static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/_static/js/custom.js -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/_templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/_templates/404.html -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/_templates/callable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/_templates/callable.rst -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/advanced_guides/Development_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/advanced_guides/Development_zh-CN.md -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/conf.py -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/cp_origin_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/cp_origin_docs.sh -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/docutils.conf: -------------------------------------------------------------------------------- 1 | [html writers] 2 | table_style: colwidths-auto 3 | -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/get_started/Quickstart_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/get_started/Quickstart_zh-CN.md -------------------------------------------------------------------------------- /VLMEvalKit/docs/zh-CN/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/docs/zh-CN/index.rst -------------------------------------------------------------------------------- /VLMEvalKit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/requirements.txt -------------------------------------------------------------------------------- /VLMEvalKit/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/requirements/docs.txt -------------------------------------------------------------------------------- /VLMEvalKit/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/run.py -------------------------------------------------------------------------------- /VLMEvalKit/scripts/AI2D_preproc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/AI2D_preproc.ipynb -------------------------------------------------------------------------------- /VLMEvalKit/scripts/apires_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/apires_scan.py -------------------------------------------------------------------------------- /VLMEvalKit/scripts/auto_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/auto_run.py -------------------------------------------------------------------------------- /VLMEvalKit/scripts/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/cover.sh -------------------------------------------------------------------------------- /VLMEvalKit/scripts/mmb_eval_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/mmb_eval_gradio.py -------------------------------------------------------------------------------- /VLMEvalKit/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/run.sh -------------------------------------------------------------------------------- /VLMEvalKit/scripts/srun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/srun.sh -------------------------------------------------------------------------------- /VLMEvalKit/scripts/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/summarize.py -------------------------------------------------------------------------------- /VLMEvalKit/scripts/visualize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/scripts/visualize.ipynb -------------------------------------------------------------------------------- /VLMEvalKit/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/setup.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/base.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/claude.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/cloudwalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/cloudwalk.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/gemini.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/glm_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/glm_vision.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/gpt.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/hf_chat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/hf_chat_model.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/hunyuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/hunyuan.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/qwen_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/qwen_api.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/qwen_vl_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/qwen_vl_api.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/reka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/reka.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/sensechat_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/sensechat_vision.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/api/stepai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/api/stepai.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/config.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/dude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/dude.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/image_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/image_base.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/image_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/image_caption.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/image_mcq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/image_mcq.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/image_mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/image_mt.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/image_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/image_vqa.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/image_yorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/image_yorn.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/mmbench_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/mmbench_video.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/mmlongbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/mmlongbench.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/slidevqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/slidevqa.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/text_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/text_base.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/text_mcq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/text_mcq.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/judge_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/judge_util.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/llavabench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/llavabench.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/mathv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/mathv.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/mathvista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/mathvista.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/mmbench_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/mmbench_video.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/mmdu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/mmdu.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/mmvet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/mmvet.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/multiple_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/multiple_choice.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/ocrbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/ocrbench.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/videomme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/videomme.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/vqa_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/vqa_eval.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/utils/yorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/utils/yorn.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/vcr.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/video_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/video_base.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/dataset/videomme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/dataset/videomme.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/inference.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/inference_mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/inference_mt.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/inference_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/inference_video.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/smp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/smp/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/smp/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/smp/file.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/smp/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/smp/log.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/smp/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/smp/misc.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/smp/vlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/smp/vlm.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/tools.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/utils/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/utils/matching_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/utils/matching_util.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/utils/mp_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/utils/mp_util.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/utils/result_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/utils/result_transfer.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/base.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/bunnyllama3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/bunnyllama3.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/cambrian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/cambrian.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/chameleon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/chameleon.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/cogvlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/cogvlm.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/deepseek_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/deepseek_vl.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/emu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/emu.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/idefics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/idefics.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/instructblip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/instructblip.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/internvl_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/internvl_chat.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/llava/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/llava/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/llava/llava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/llava/llava.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/llava/llava_xtuner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/llava/llava_xtuner.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/mantis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/mantis.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/mgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/mgm.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/minicpm_v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/minicpm_v.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/minigpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/minigpt4.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/misc/blip2_instruct_vicuna13b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/misc/blip2_instruct_vicuna13b.yaml -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/misc/blip2_instruct_vicuna7b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/misc/blip2_instruct_vicuna7b.yaml -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/misc/minigpt4_13b_eval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/misc/minigpt4_13b_eval.yaml -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/misc/minigpt4_7b_eval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/misc/minigpt4_7b_eval.yaml -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/misc/minigptv2_eval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/misc/minigptv2_eval.yaml -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/mmalaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/mmalaya.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/monkey.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/mplug_owl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/mplug_owl2.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/omnilmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/omnilmm.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/open_flamingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/open_flamingo.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/ovis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/ovis.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/paligemma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/paligemma.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/pandagpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/pandagpt.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/phi3_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/phi3_vision.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/qh_360vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/qh_360vl.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/qwen_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/qwen_vl.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/transcore_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/transcore_m.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/video_llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/video_llm/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/video_llm/video_llava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/video_llm/video_llava.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/vila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/vila.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/visualglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/visualglm.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/vxverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/vxverse.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/wemm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/wemm.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/xcomposer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/xcomposer/__init__.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/xcomposer/sharecaptioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/xcomposer/sharecaptioner.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/xcomposer/xcomposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/xcomposer/xcomposer.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/xcomposer/xcomposer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/xcomposer/xcomposer2.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/xcomposer/xcomposer2_4KHD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/xcomposer/xcomposer2_4KHD.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/xcomposer/xcomposer2d5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/xcomposer/xcomposer2d5.py -------------------------------------------------------------------------------- /VLMEvalKit/vlmeval/vlm/yi_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/VLMEvalKit/vlmeval/vlm/yi_vl.py -------------------------------------------------------------------------------- /assets/EagleVision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/assets/EagleVision.png -------------------------------------------------------------------------------- /assets/ans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/assets/ans.png -------------------------------------------------------------------------------- /assets/gradio_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/assets/gradio_demo.png -------------------------------------------------------------------------------- /assets/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/assets/introduction.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/assets/logo.png -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_1B-fair1m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_1B-fair1m.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_1B-mar20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_1B-mar20.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_1B-shiprsimagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_1B-shiprsimagenet.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_2B-fair1m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_2B-fair1m.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_2B-mar20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_2B-mar20.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_2B-shiprsimagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_2B-shiprsimagenet.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_4B-fair1m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_4B-fair1m.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_4B-mar20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_4B-mar20.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_4B-shiprsimagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_4B-shiprsimagenet.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_7B-fair1m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_7B-fair1m.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_7B-mar20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_7B-mar20.py -------------------------------------------------------------------------------- /configs/EagleVision/EagleVision_7B-shiprsimagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/EagleVision_7B-shiprsimagenet.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/default_runtime.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/dota_rr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/dota_rr.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/dota_rr_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/dota_rr_ms.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/fair1m_Task1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/fair1m_Task1.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/fair1m_Task2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/fair1m_Task2.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/hrsc_rr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/hrsc_rr.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/mar20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/mar20.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/schedule_1x.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/schedule_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/schedule_3x.py -------------------------------------------------------------------------------- /configs/EagleVision/_base_/shiprsimagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/EagleVision/_base_/shiprsimagenet.py -------------------------------------------------------------------------------- /configs/_base_/datasets/dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/dior.py -------------------------------------------------------------------------------- /configs/_base_/datasets/dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/dota.py -------------------------------------------------------------------------------- /configs/_base_/datasets/dota_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/dota_coco.py -------------------------------------------------------------------------------- /configs/_base_/datasets/dota_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/dota_ms.py -------------------------------------------------------------------------------- /configs/_base_/datasets/dota_qbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/dota_qbox.py -------------------------------------------------------------------------------- /configs/_base_/datasets/dotav15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/dotav15.py -------------------------------------------------------------------------------- /configs/_base_/datasets/dotav2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/dotav2.py -------------------------------------------------------------------------------- /configs/_base_/datasets/hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/hrsc.py -------------------------------------------------------------------------------- /configs/_base_/datasets/hrsid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/hrsid.py -------------------------------------------------------------------------------- /configs/_base_/datasets/rsdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/rsdd.py -------------------------------------------------------------------------------- /configs/_base_/datasets/srsdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/srsdd.py -------------------------------------------------------------------------------- /configs/_base_/datasets/ssdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/datasets/ssdd.py -------------------------------------------------------------------------------- /configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/schedules/schedule_3x.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_40e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/schedules/schedule_40e.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_6x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/_base_/schedules/schedule_6x.py -------------------------------------------------------------------------------- /configs/cfa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/cfa/README.md -------------------------------------------------------------------------------- /configs/cfa/cfa-qbox_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/cfa/cfa-qbox_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/cfa/cfa-qbox_r50_fpn_40e_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/cfa/cfa-qbox_r50_fpn_40e_dota.py -------------------------------------------------------------------------------- /configs/cfa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/cfa/metafile.yml -------------------------------------------------------------------------------- /configs/convnext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/convnext/README.md -------------------------------------------------------------------------------- /configs/convnext/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/convnext/metafile.yml -------------------------------------------------------------------------------- /configs/convnext/rotated-retinanet-rbox-le90_convnext-tiny_fpn_kld-stable_adamw-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/convnext/rotated-retinanet-rbox-le90_convnext-tiny_fpn_kld-stable_adamw-1x_dota.py -------------------------------------------------------------------------------- /configs/csl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/csl/README.md -------------------------------------------------------------------------------- /configs/csl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/csl/metafile.yml -------------------------------------------------------------------------------- /configs/csl/rotated-retinanet-rbox-le90_r50_fpn_csl-gaussian_amp-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/csl/rotated-retinanet-rbox-le90_r50_fpn_csl-gaussian_amp-1x_dota.py -------------------------------------------------------------------------------- /configs/gliding_vertex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gliding_vertex/README.md -------------------------------------------------------------------------------- /configs/gliding_vertex/gliding-vertex-qbox_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gliding_vertex/gliding-vertex-qbox_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/gliding_vertex/gliding-vertex-rbox_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gliding_vertex/gliding-vertex-rbox_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/gliding_vertex/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gliding_vertex/metafile.yml -------------------------------------------------------------------------------- /configs/gwd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gwd/README.md -------------------------------------------------------------------------------- /configs/gwd/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gwd/metafile.yml -------------------------------------------------------------------------------- /configs/gwd/rotated-retinanet-hbox-oc_r50_fpn_gwd_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gwd/rotated-retinanet-hbox-oc_r50_fpn_gwd_1x_dota.py -------------------------------------------------------------------------------- /configs/gwd/rotated-retinanet-rbox-le135_r50_fpn_gwd_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gwd/rotated-retinanet-rbox-le135_r50_fpn_gwd_1x_dota.py -------------------------------------------------------------------------------- /configs/gwd/rotated-retinanet-rbox-le90_r50_fpn_gwd_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/gwd/rotated-retinanet-rbox-le90_r50_fpn_gwd_1x_dota.py -------------------------------------------------------------------------------- /configs/h2rbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/README.md -------------------------------------------------------------------------------- /configs/h2rbox/dior/h2rbox-le90_r50_fpn_adamw-1x_dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/dior/h2rbox-le90_r50_fpn_adamw-1x_dior.py -------------------------------------------------------------------------------- /configs/h2rbox/dotav15/h2rbox-le90_r50_fpn_adamw-1x_dotav15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/dotav15/h2rbox-le90_r50_fpn_adamw-1x_dotav15.py -------------------------------------------------------------------------------- /configs/h2rbox/dotav15/h2rbox-le90_r50_fpn_adamw-3x_dotav15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/dotav15/h2rbox-le90_r50_fpn_adamw-3x_dotav15.py -------------------------------------------------------------------------------- /configs/h2rbox/dotav2/h2rbox-le90_r50_fpn_adamw-1x_dotav2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/dotav2/h2rbox-le90_r50_fpn_adamw-1x_dotav2.py -------------------------------------------------------------------------------- /configs/h2rbox/dotav2/h2rbox-le90_r50_fpn_adamw-3x_dotav2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/dotav2/h2rbox-le90_r50_fpn_adamw-3x_dotav2.py -------------------------------------------------------------------------------- /configs/h2rbox/h2rbox-le90_r50_fpn_adamw-1x_dota-ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/h2rbox-le90_r50_fpn_adamw-1x_dota-ms.py -------------------------------------------------------------------------------- /configs/h2rbox/h2rbox-le90_r50_fpn_adamw-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/h2rbox-le90_r50_fpn_adamw-1x_dota.py -------------------------------------------------------------------------------- /configs/h2rbox/h2rbox-le90_r50_fpn_adamw-3x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/h2rbox-le90_r50_fpn_adamw-3x_dota.py -------------------------------------------------------------------------------- /configs/h2rbox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox/metafile.yml -------------------------------------------------------------------------------- /configs/h2rbox_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox_v2/README.md -------------------------------------------------------------------------------- /configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn-1x_dota.py -------------------------------------------------------------------------------- /configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn-1x_dotav15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn-1x_dotav15.py -------------------------------------------------------------------------------- /configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn-1x_dotav2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn-1x_dotav2.py -------------------------------------------------------------------------------- /configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn-6x_hrsc.py -------------------------------------------------------------------------------- /configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn_ms_rr-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn_ms_rr-1x_dota.py -------------------------------------------------------------------------------- /configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn_rr-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox_v2/h2rbox_v2-le90_r50_fpn_rr-6x_hrsc.py -------------------------------------------------------------------------------- /configs/h2rbox_v2/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/h2rbox_v2/metafile.yml -------------------------------------------------------------------------------- /configs/kfiou/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kfiou/README.md -------------------------------------------------------------------------------- /configs/kfiou/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kfiou/metafile.yml -------------------------------------------------------------------------------- /configs/kfiou/r3det-oc_r50_fpn_kfiou-ln_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kfiou/r3det-oc_r50_fpn_kfiou-ln_1x_dota.py -------------------------------------------------------------------------------- /configs/kfiou/roi-trans-le90_r50_fpn_kfiou-ln_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kfiou/roi-trans-le90_r50_fpn_kfiou-ln_1x_dota.py -------------------------------------------------------------------------------- /configs/kfiou/rotated-retinanet-hbox-le135_r50_fpn_kfiou_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kfiou/rotated-retinanet-hbox-le135_r50_fpn_kfiou_1x_dota.py -------------------------------------------------------------------------------- /configs/kfiou/rotated-retinanet-hbox-le90_r50_fpn_kfiou_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kfiou/rotated-retinanet-hbox-le90_r50_fpn_kfiou_1x_dota.py -------------------------------------------------------------------------------- /configs/kfiou/rotated-retinanet-hbox-oc_r50_fpn_kfiou_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kfiou/rotated-retinanet-hbox-oc_r50_fpn_kfiou_1x_dota.py -------------------------------------------------------------------------------- /configs/kfiou/s2anet-le135_r50_fpn_kfiou-ln_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kfiou/s2anet-le135_r50_fpn_kfiou-ln_1x_dota.py -------------------------------------------------------------------------------- /configs/kld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/README.md -------------------------------------------------------------------------------- /configs/kld/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/metafile.yml -------------------------------------------------------------------------------- /configs/kld/r3det-oc_r50_fpn_kld-stable_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/r3det-oc_r50_fpn_kld-stable_1x_dota.py -------------------------------------------------------------------------------- /configs/kld/r3det-oc_r50_fpn_kld_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/r3det-oc_r50_fpn_kld_1x_dota.py -------------------------------------------------------------------------------- /configs/kld/r3det-tiny-oc_r50_fpn_kld_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/r3det-tiny-oc_r50_fpn_kld_1x_dota.py -------------------------------------------------------------------------------- /configs/kld/rotated-retinanet-hbox-oc_r50_fpn_kld-stable_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/rotated-retinanet-hbox-oc_r50_fpn_kld-stable_1x_dota.py -------------------------------------------------------------------------------- /configs/kld/rotated-retinanet-hbox-oc_r50_fpn_kld-stable_rr-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/rotated-retinanet-hbox-oc_r50_fpn_kld-stable_rr-6x_hrsc.py -------------------------------------------------------------------------------- /configs/kld/rotated-retinanet-hbox-oc_r50_fpn_kld_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/rotated-retinanet-hbox-oc_r50_fpn_kld_1x_dota.py -------------------------------------------------------------------------------- /configs/kld/rotated-retinanet-rbox-le90_r50_fpn_kld-stable_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/rotated-retinanet-rbox-le90_r50_fpn_kld-stable_1x_dota.py -------------------------------------------------------------------------------- /configs/kld/rotated-retinanet-rbox-le90_r50_fpn_kld-stable_adamw-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/rotated-retinanet-rbox-le90_r50_fpn_kld-stable_adamw-1x_dota.py -------------------------------------------------------------------------------- /configs/kld/rotated-retinanet-rbox-le90_r50_fpn_kld-stable_rr-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/rotated-retinanet-rbox-le90_r50_fpn_kld-stable_rr-6x_hrsc.py -------------------------------------------------------------------------------- /configs/kld/rotated-retinanet-rbox-le90_r50_fpn_kld_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/kld/rotated-retinanet-rbox-le90_r50_fpn_kld_1x_dota.py -------------------------------------------------------------------------------- /configs/oriented_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/README.md -------------------------------------------------------------------------------- /configs/oriented_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_6x_hrsid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_6x_hrsid.py -------------------------------------------------------------------------------- /configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_6x_rsdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_6x_rsdd.py -------------------------------------------------------------------------------- /configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_6x_srsdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_6x_srsdd.py -------------------------------------------------------------------------------- /configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_6x_ssdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_6x_ssdd.py -------------------------------------------------------------------------------- /configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_amp-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/oriented-rcnn-le90_r50_fpn_amp-1x_dota.py -------------------------------------------------------------------------------- /configs/oriented_rcnn/oriented-rcnn-le90_swin-tiny_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_rcnn/oriented-rcnn-le90_swin-tiny_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/oriented_reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_reppoints/README.md -------------------------------------------------------------------------------- /configs/oriented_reppoints/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_reppoints/metafile.yml -------------------------------------------------------------------------------- /configs/oriented_reppoints/oriented-reppoints-qbox_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_reppoints/oriented-reppoints-qbox_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/oriented_reppoints/oriented-reppoints-qbox_r50_fpn_mstrain-40e_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/oriented_reppoints/oriented-reppoints-qbox_r50_fpn_mstrain-40e_dota.py -------------------------------------------------------------------------------- /configs/psc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/psc/README.md -------------------------------------------------------------------------------- /configs/psc/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/psc/metafile.yml -------------------------------------------------------------------------------- /configs/psc/rotated-fcos-hbox-le90_r50_fpn_psc-dual_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/psc/rotated-fcos-hbox-le90_r50_fpn_psc-dual_1x_dota.py -------------------------------------------------------------------------------- /configs/psc/rotated-fcos-hbox-le90_r50_fpn_psc_rr-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/psc/rotated-fcos-hbox-le90_r50_fpn_psc_rr-6x_hrsc.py -------------------------------------------------------------------------------- /configs/psc/rotated-retinanet-rbox-le90_r50_fpn_psc-dual_amp-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/psc/rotated-retinanet-rbox-le90_r50_fpn_psc-dual_amp-1x_dota.py -------------------------------------------------------------------------------- /configs/psc/rotated-retinanet-rbox-le90_r50_fpn_psc_rr-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/psc/rotated-retinanet-rbox-le90_r50_fpn_psc_rr-6x_hrsc.py -------------------------------------------------------------------------------- /configs/r3det/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/r3det/README.md -------------------------------------------------------------------------------- /configs/r3det/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/r3det/metafile.yml -------------------------------------------------------------------------------- /configs/r3det/r3det-oc_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/r3det/r3det-oc_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/r3det/r3det-refine-oc_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/r3det/r3det-refine-oc_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/r3det/r3det-tiny-oc_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/r3det/r3det-tiny-oc_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/redet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/redet/README.md -------------------------------------------------------------------------------- /configs/redet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/redet/metafile.yml -------------------------------------------------------------------------------- /configs/redet/redet-le90_re50_refpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/redet/redet-le90_re50_refpn_1x_dota.py -------------------------------------------------------------------------------- /configs/redet/redet-le90_re50_refpn_3x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/redet/redet-le90_re50_refpn_3x_hrsc.py -------------------------------------------------------------------------------- /configs/redet/redet-le90_re50_refpn_amp-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/redet/redet-le90_re50_refpn_amp-1x_dota.py -------------------------------------------------------------------------------- /configs/redet/redet-le90_re50_refpn_rr-1x_dota-ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/redet/redet-le90_re50_refpn_rr-1x_dota-ms.py -------------------------------------------------------------------------------- /configs/roi_trans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/README.md -------------------------------------------------------------------------------- /configs/roi_trans/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/metafile.yml -------------------------------------------------------------------------------- /configs/roi_trans/roi-trans-le135_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/roi-trans-le135_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/roi_trans/roi-trans-le90_r50_fpn_1x_dota-ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/roi-trans-le90_r50_fpn_1x_dota-ms.py -------------------------------------------------------------------------------- /configs/roi_trans/roi-trans-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/roi-trans-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/roi_trans/roi-trans-le90_r50_fpn_amp-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/roi-trans-le90_r50_fpn_amp-1x_dota.py -------------------------------------------------------------------------------- /configs/roi_trans/roi-trans-le90_r50_fpn_rr-1x_dota-ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/roi-trans-le90_r50_fpn_rr-1x_dota-ms.py -------------------------------------------------------------------------------- /configs/roi_trans/roi-trans-le90_swin-tiny_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/roi-trans-le90_swin-tiny_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/roi_trans/roi-trans-oc_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/roi_trans/roi-trans-oc_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_atss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_atss/README.md -------------------------------------------------------------------------------- /configs/rotated_atss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_atss/metafile.yml -------------------------------------------------------------------------------- /configs/rotated_atss/rotated-atss-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_atss/rotated-atss-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_faster_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_faster_rcnn/README.md -------------------------------------------------------------------------------- /configs/rotated_faster_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_faster_rcnn/metafile.yml -------------------------------------------------------------------------------- /configs/rotated_faster_rcnn/rotated-faster-rcnn-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_faster_rcnn/rotated-faster-rcnn-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_fcos/README.md -------------------------------------------------------------------------------- /configs/rotated_fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_fcos/metafile.yml -------------------------------------------------------------------------------- /configs/rotated_fcos/rotated-fcos-hbox-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_fcos/rotated-fcos-hbox-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_fcos/rotated-fcos-hbox-le90_r50_fpn_csl-gaussian_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_fcos/rotated-fcos-hbox-le90_r50_fpn_csl-gaussian_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_fcos/rotated-fcos-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_fcos/rotated-fcos-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_fcos/rotated-fcos-le90_r50_fpn_kld_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_fcos/rotated-fcos-le90_r50_fpn_kld_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_fcos/rotated-fcos-le90_r50_fpn_rr-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_fcos/rotated-fcos-le90_r50_fpn_rr-6x_hrsc.py -------------------------------------------------------------------------------- /configs/rotated_reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_reppoints/README.md -------------------------------------------------------------------------------- /configs/rotated_reppoints/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_reppoints/metafile.yml -------------------------------------------------------------------------------- /configs/rotated_reppoints/rotated-reppoints-qbox_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_reppoints/rotated-reppoints-qbox_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/README.md -------------------------------------------------------------------------------- /configs/rotated_retinanet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/metafile.yml -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-hbox-le135_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-hbox-le135_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-hbox-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-hbox-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-hbox-oc_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-hbox-oc_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-hbox-oc_r50_fpn_rr-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-hbox-oc_r50_fpn_rr-6x_hrsc.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-rbox-le135_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-rbox-le135_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_1x_dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_1x_dior.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_amp-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_amp-1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_rr-1x_dota-ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_rr-1x_dota-ms.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_rr-6x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-rbox-le90_r50_fpn_rr-6x_hrsc.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-rbox-oc_r50_fpn_1x_dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-rbox-oc_r50_fpn_1x_dior.py -------------------------------------------------------------------------------- /configs/rotated_retinanet/rotated-retinanet-rbox-oc_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_retinanet/rotated-retinanet-rbox-oc_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/README.md -------------------------------------------------------------------------------- /configs/rotated_rtmdet/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/_base_/default_runtime.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/_base_/dota_rr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/_base_/dota_rr.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/_base_/dota_rr_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/_base_/dota_rr_ms.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/_base_/hrsc_rr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/_base_/hrsc_rr.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/_base_/schedule_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/_base_/schedule_3x.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/metafile.yml -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_l-100e-aug-dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_l-100e-aug-dota.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_l-300e-aug-hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_l-300e-aug-hrsc.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_l-3x-dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_l-3x-dota.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_l-3x-dota_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_l-3x-dota_ms.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_l-9x-hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_l-9x-hrsc.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_l-coco_pretrain-3x-dota_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_l-coco_pretrain-3x-dota_ms.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_m-3x-dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_m-3x-dota.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_m-3x-dota_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_m-3x-dota_ms.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_s-3x-dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_s-3x-dota.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_s-3x-dota_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_s-3x-dota_ms.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_tiny-300e-aug-hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_tiny-300e-aug-hrsc.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_tiny-3x-dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_tiny-3x-dota.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_tiny-3x-dota_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_tiny-3x-dota_ms.py -------------------------------------------------------------------------------- /configs/rotated_rtmdet/rotated_rtmdet_tiny-9x-hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/rotated_rtmdet/rotated_rtmdet_tiny-9x-hrsc.py -------------------------------------------------------------------------------- /configs/s2anet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/s2anet/README.md -------------------------------------------------------------------------------- /configs/s2anet/cascade-s2anet-le135_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/s2anet/cascade-s2anet-le135_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/s2anet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/s2anet/metafile.yml -------------------------------------------------------------------------------- /configs/s2anet/s2anet-le135_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/s2anet/s2anet-le135_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/s2anet/s2anet-le135_r50_fpn_3x_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/s2anet/s2anet-le135_r50_fpn_3x_hrsc.py -------------------------------------------------------------------------------- /configs/s2anet/s2anet-le135_r50_fpn_amp-1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/s2anet/s2anet-le135_r50_fpn_amp-1x_dota.py -------------------------------------------------------------------------------- /configs/s2anet/s2anet-le90_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/s2anet/s2anet-le90_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /configs/sasm_reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/sasm_reppoints/README.md -------------------------------------------------------------------------------- /configs/sasm_reppoints/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/sasm_reppoints/metafile.yml -------------------------------------------------------------------------------- /configs/sasm_reppoints/sasm-reppoints-qbox_r50_fpn_1x_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/configs/sasm_reppoints/sasm-reppoints-qbox_r50_fpn_1x_dota.py -------------------------------------------------------------------------------- /demo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/demo/app.py -------------------------------------------------------------------------------- /demo/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/demo/demo1.png -------------------------------------------------------------------------------- /demo/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/demo/demo2.png -------------------------------------------------------------------------------- /demo/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/demo/model_utils.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docker/serve/Dockerfile -------------------------------------------------------------------------------- /docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docker/serve/config.properties -------------------------------------------------------------------------------- /docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /docs/en/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/_static/css/readthedocs.css -------------------------------------------------------------------------------- /docs/en/_static/image/mmrotate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/_static/image/mmrotate-logo.png -------------------------------------------------------------------------------- /docs/en/advanced_guides/conventions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/advanced_guides/customize_dataset.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_losses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/advanced_guides/customize_models.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/advanced_guides/customize_runtime.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_transforms.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/data_flow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/datasets.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/engine.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/evaluation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/how_to.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/advanced_guides/index.rst -------------------------------------------------------------------------------- /docs/en/advanced_guides/models.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/transforms.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/api.rst -------------------------------------------------------------------------------- /docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/conf.py -------------------------------------------------------------------------------- /docs/en/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/get_started.md -------------------------------------------------------------------------------- /docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/index.rst -------------------------------------------------------------------------------- /docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/make.bat -------------------------------------------------------------------------------- /docs/en/migration.md: -------------------------------------------------------------------------------- 1 | # Migration 2 | -------------------------------------------------------------------------------- /docs/en/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/model_zoo.md -------------------------------------------------------------------------------- /docs/en/notes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/notes/changelog.md -------------------------------------------------------------------------------- /docs/en/notes/changelog_v0.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/notes/changelog_v0.x.md -------------------------------------------------------------------------------- /docs/en/notes/contribution_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/notes/contribution_guide.md -------------------------------------------------------------------------------- /docs/en/notes/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/notes/faq.md -------------------------------------------------------------------------------- /docs/en/notes/projects.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/overview.md -------------------------------------------------------------------------------- /docs/en/stat.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/switch_language.md -------------------------------------------------------------------------------- /docs/en/user_guides/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/user_guides/config.md -------------------------------------------------------------------------------- /docs/en/user_guides/dataset_prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/user_guides/dataset_prepare.md -------------------------------------------------------------------------------- /docs/en/user_guides/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/user_guides/deploy.md -------------------------------------------------------------------------------- /docs/en/user_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/user_guides/index.rst -------------------------------------------------------------------------------- /docs/en/user_guides/inference.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/user_guides/label_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/user_guides/label_studio.md -------------------------------------------------------------------------------- /docs/en/user_guides/test_results_submission.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/user_guides/train_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/user_guides/train_test.md -------------------------------------------------------------------------------- /docs/en/user_guides/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/en/user_guides/useful_tools.md -------------------------------------------------------------------------------- /docs/en/user_guides/visualization.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/_static/css/readthedocs.css -------------------------------------------------------------------------------- /docs/zh_cn/_static/image/mmrotate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/_static/image/mmrotate-logo.png -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/conventions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/advanced_guides/customize_dataset.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_losses.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/advanced_guides/customize_models.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/advanced_guides/customize_runtime.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_transforms.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/data_flow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/datasets.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/engine.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/evaluation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/how_to.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/advanced_guides/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/models.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/transforms.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /docs/zh_cn/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/get_started.md -------------------------------------------------------------------------------- /docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /docs/zh_cn/migration.md: -------------------------------------------------------------------------------- 1 | # Migration 2 | -------------------------------------------------------------------------------- /docs/zh_cn/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/model_zoo.md -------------------------------------------------------------------------------- /docs/zh_cn/notes/contribution_guide.md: -------------------------------------------------------------------------------- 1 | # 贡献指南(待更新) 2 | -------------------------------------------------------------------------------- /docs/zh_cn/notes/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/notes/faq.md -------------------------------------------------------------------------------- /docs/zh_cn/notes/projects.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/overview.md -------------------------------------------------------------------------------- /docs/zh_cn/stat.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/switch_language.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/user_guides/config.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/dataset_prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/user_guides/dataset_prepare.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/user_guides/deploy.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/user_guides/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/inference.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/label_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/user_guides/label_studio.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/test_results_submission.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/train_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/user_guides/train_test.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/docs/zh_cn/user_guides/useful_tools.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/visualization.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internvl/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/conversation.py -------------------------------------------------------------------------------- /internvl/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/dist_utils.py -------------------------------------------------------------------------------- /internvl/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/__init__.py -------------------------------------------------------------------------------- /internvl/model/internlm2/configuration_internlm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internlm2/configuration_internlm2.py -------------------------------------------------------------------------------- /internvl/model/internlm2/modeling_internlm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internlm2/modeling_internlm2.py -------------------------------------------------------------------------------- /internvl/model/internlm2/tokenization_internlm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internlm2/tokenization_internlm2.py -------------------------------------------------------------------------------- /internvl/model/internlm2/tokenization_internlm2_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internlm2/tokenization_internlm2_fast.py -------------------------------------------------------------------------------- /internvl/model/internvl_chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internvl_chat/__init__.py -------------------------------------------------------------------------------- /internvl/model/internvl_chat/configuration_intern_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internvl_chat/configuration_intern_vit.py -------------------------------------------------------------------------------- /internvl/model/internvl_chat/configuration_internvl_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internvl_chat/configuration_internvl_chat.py -------------------------------------------------------------------------------- /internvl/model/internvl_chat/flash_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internvl_chat/flash_attention.py -------------------------------------------------------------------------------- /internvl/model/internvl_chat/modeling_intern_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internvl_chat/modeling_intern_vit.py -------------------------------------------------------------------------------- /internvl/model/internvl_chat/modeling_internvl_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/internvl_chat/modeling_internvl_chat.py -------------------------------------------------------------------------------- /internvl/model/phi3/configuration_phi3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/phi3/configuration_phi3.py -------------------------------------------------------------------------------- /internvl/model/phi3/modeling_phi3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/model/phi3/modeling_phi3.py -------------------------------------------------------------------------------- /internvl/patch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/__init__.py -------------------------------------------------------------------------------- /internvl/patch/internlm2_packed_training_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/internlm2_packed_training_patch.py -------------------------------------------------------------------------------- /internvl/patch/internvit_liger_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/internvit_liger_monkey_patch.py -------------------------------------------------------------------------------- /internvl/patch/llama2_flash_attn_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/llama2_flash_attn_monkey_patch.py -------------------------------------------------------------------------------- /internvl/patch/llama_flash_attn_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/llama_flash_attn_monkey_patch.py -------------------------------------------------------------------------------- /internvl/patch/llama_packed_training_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/llama_packed_training_patch.py -------------------------------------------------------------------------------- /internvl/patch/llama_rmsnorm_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/llama_rmsnorm_monkey_patch.py -------------------------------------------------------------------------------- /internvl/patch/pad_data_collator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/pad_data_collator.py -------------------------------------------------------------------------------- /internvl/patch/phi3_packed_training_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/phi3_packed_training_patch.py -------------------------------------------------------------------------------- /internvl/patch/qwen2_packed_training_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/qwen2_packed_training_patch.py -------------------------------------------------------------------------------- /internvl/patch/train_dataloader_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/train_dataloader_patch.py -------------------------------------------------------------------------------- /internvl/patch/train_sampler_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/patch/train_sampler_patch.py -------------------------------------------------------------------------------- /internvl/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/train/__init__.py -------------------------------------------------------------------------------- /internvl/train/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/train/constants.py -------------------------------------------------------------------------------- /internvl/train/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/train/dataset.py -------------------------------------------------------------------------------- /internvl/train/dataset_packed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/train/dataset_packed.py -------------------------------------------------------------------------------- /internvl/train/internvl_chat_dpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/train/internvl_chat_dpo.py -------------------------------------------------------------------------------- /internvl/train/internvl_chat_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/train/internvl_chat_finetune.py -------------------------------------------------------------------------------- /internvl/train/internvl_chat_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/train/internvl_chat_pretrain.py -------------------------------------------------------------------------------- /internvl/train/trainer_dpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/internvl/train/trainer_dpo.py -------------------------------------------------------------------------------- /mmrotate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/__init__.py -------------------------------------------------------------------------------- /mmrotate/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/apis/__init__.py -------------------------------------------------------------------------------- /mmrotate/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/apis/inference.py -------------------------------------------------------------------------------- /mmrotate/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/__init__.py -------------------------------------------------------------------------------- /mmrotate/datasets/dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/dior.py -------------------------------------------------------------------------------- /mmrotate/datasets/dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/dota.py -------------------------------------------------------------------------------- /mmrotate/datasets/fair1m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/fair1m.py -------------------------------------------------------------------------------- /mmrotate/datasets/hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/hrsc.py -------------------------------------------------------------------------------- /mmrotate/datasets/mar20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/mar20.py -------------------------------------------------------------------------------- /mmrotate/datasets/shiprsimagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/shiprsimagenet.py -------------------------------------------------------------------------------- /mmrotate/datasets/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/transforms/__init__.py -------------------------------------------------------------------------------- /mmrotate/datasets/transforms/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/transforms/loading.py -------------------------------------------------------------------------------- /mmrotate/datasets/transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/transforms/transforms.py -------------------------------------------------------------------------------- /mmrotate/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/datasets/utils.py -------------------------------------------------------------------------------- /mmrotate/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/evaluation/__init__.py -------------------------------------------------------------------------------- /mmrotate/evaluation/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/evaluation/functional/__init__.py -------------------------------------------------------------------------------- /mmrotate/evaluation/functional/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/evaluation/functional/mean_ap.py -------------------------------------------------------------------------------- /mmrotate/evaluation/metrics/EV_bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/evaluation/metrics/EV_bench.py -------------------------------------------------------------------------------- /mmrotate/evaluation/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/evaluation/metrics/__init__.py -------------------------------------------------------------------------------- /mmrotate/evaluation/metrics/dota_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/evaluation/metrics/dota_metric.py -------------------------------------------------------------------------------- /mmrotate/evaluation/metrics/rotated_coco_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/evaluation/metrics/rotated_coco_metric.py -------------------------------------------------------------------------------- /mmrotate/models/EagleVision/EVDetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/EagleVision/EVDetector.py -------------------------------------------------------------------------------- /mmrotate/models/EagleVision/EVHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/EagleVision/EVHead.py -------------------------------------------------------------------------------- /mmrotate/models/EagleVision/EVProHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/EagleVision/EVProHead.py -------------------------------------------------------------------------------- /mmrotate/models/EagleVision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/EagleVision/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/backbones/re_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/backbones/re_resnet.py -------------------------------------------------------------------------------- /mmrotate/models/data_preprocessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/data_preprocessors/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/data_preprocessors/data_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/data_preprocessors/data_preprocessor.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/angle_branch_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/angle_branch_retina_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/cfa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/cfa_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/h2rbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/h2rbox_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/h2rbox_v2_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/h2rbox_v2_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/oriented_reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/oriented_reppoints_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/oriented_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/oriented_rpn_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/r3_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/r3_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/rotated_atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/rotated_atss_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/rotated_fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/rotated_fcos_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/rotated_reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/rotated_reppoints_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/rotated_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/rotated_retina_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/rotated_rtmdet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/rotated_rtmdet_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/s2a_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/s2a_head.py -------------------------------------------------------------------------------- /mmrotate/models/dense_heads/sam_reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/dense_heads/sam_reppoints_head.py -------------------------------------------------------------------------------- /mmrotate/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/detectors/h2rbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/detectors/h2rbox.py -------------------------------------------------------------------------------- /mmrotate/models/detectors/h2rbox_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/detectors/h2rbox_v2.py -------------------------------------------------------------------------------- /mmrotate/models/detectors/refine_single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/detectors/refine_single_stage.py -------------------------------------------------------------------------------- /mmrotate/models/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/layers/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/layers/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/layers/align.py -------------------------------------------------------------------------------- /mmrotate/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/losses/convex_giou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/convex_giou_loss.py -------------------------------------------------------------------------------- /mmrotate/models/losses/gaussian_dist_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/gaussian_dist_loss.py -------------------------------------------------------------------------------- /mmrotate/models/losses/gaussian_dist_loss_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/gaussian_dist_loss_v1.py -------------------------------------------------------------------------------- /mmrotate/models/losses/h2rbox_consistency_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/h2rbox_consistency_loss.py -------------------------------------------------------------------------------- /mmrotate/models/losses/h2rbox_v2_consistency_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/h2rbox_v2_consistency_loss.py -------------------------------------------------------------------------------- /mmrotate/models/losses/kf_iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/kf_iou_loss.py -------------------------------------------------------------------------------- /mmrotate/models/losses/rotated_iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/rotated_iou_loss.py -------------------------------------------------------------------------------- /mmrotate/models/losses/smooth_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/smooth_focal_loss.py -------------------------------------------------------------------------------- /mmrotate/models/losses/spatial_border_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/losses/spatial_border_loss.py -------------------------------------------------------------------------------- /mmrotate/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/necks/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/necks/re_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/necks/re_fpn.py -------------------------------------------------------------------------------- /mmrotate/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/roi_heads/bbox_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/roi_heads/bbox_heads/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/roi_heads/bbox_heads/convfc_rbbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/roi_heads/bbox_heads/convfc_rbbox_head.py -------------------------------------------------------------------------------- /mmrotate/models/roi_heads/bbox_heads/gv_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/roi_heads/bbox_heads/gv_bbox_head.py -------------------------------------------------------------------------------- /mmrotate/models/roi_heads/gv_ratio_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/roi_heads/gv_ratio_roi_head.py -------------------------------------------------------------------------------- /mmrotate/models/roi_heads/roi_extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/roi_heads/roi_extractors/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/roi_heads/roi_extractors/rotate_single_level_roi_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/roi_heads/roi_extractors/rotate_single_level_roi_extractor.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/assigners/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/assigners/convex_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/assigners/convex_assigner.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/assigners/max_convex_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/assigners/max_convex_iou_assigner.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/assigners/rotate_iou2d_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/assigners/rotate_iou2d_calculator.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/assigners/rotated_atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/assigners/rotated_atss_assigner.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/assigners/sas_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/assigners/sas_assigner.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/angle_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/angle_coder.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/delta_midpointoffset_rbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/delta_midpointoffset_rbbox_coder.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/delta_xywh_hbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/delta_xywh_hbbox_coder.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/delta_xywh_qbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/delta_xywh_qbbox_coder.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/delta_xywht_hbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/delta_xywht_hbbox_coder.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/delta_xywht_rbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/delta_xywht_rbbox_coder.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/distance_angle_point_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/distance_angle_point_coder.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/coders/gliding_vertex_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/coders/gliding_vertex_coder.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/prior_generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/prior_generators/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/task_modules/prior_generators/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/task_modules/prior_generators/anchor_generator.py -------------------------------------------------------------------------------- /mmrotate/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/utils/__init__.py -------------------------------------------------------------------------------- /mmrotate/models/utils/enn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/utils/enn.py -------------------------------------------------------------------------------- /mmrotate/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/utils/misc.py -------------------------------------------------------------------------------- /mmrotate/models/utils/orconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/utils/orconv.py -------------------------------------------------------------------------------- /mmrotate/models/utils/ripool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/models/utils/ripool.py -------------------------------------------------------------------------------- /mmrotate/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/registry.py -------------------------------------------------------------------------------- /mmrotate/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/structures/__init__.py -------------------------------------------------------------------------------- /mmrotate/structures/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/structures/bbox/__init__.py -------------------------------------------------------------------------------- /mmrotate/structures/bbox/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/structures/bbox/bbox_overlaps.py -------------------------------------------------------------------------------- /mmrotate/structures/bbox/box_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/structures/bbox/box_converters.py -------------------------------------------------------------------------------- /mmrotate/structures/bbox/quadri_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/structures/bbox/quadri_boxes.py -------------------------------------------------------------------------------- /mmrotate/structures/bbox/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/structures/bbox/rotated_boxes.py -------------------------------------------------------------------------------- /mmrotate/structures/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/structures/bbox/transforms.py -------------------------------------------------------------------------------- /mmrotate/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/testing/__init__.py -------------------------------------------------------------------------------- /mmrotate/testing/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/testing/_utils.py -------------------------------------------------------------------------------- /mmrotate/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/utils/__init__.py -------------------------------------------------------------------------------- /mmrotate/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/utils/collect_env.py -------------------------------------------------------------------------------- /mmrotate/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/utils/misc.py -------------------------------------------------------------------------------- /mmrotate/utils/patch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/utils/patch/__init__.py -------------------------------------------------------------------------------- /mmrotate/utils/patch/merge_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/utils/patch/merge_results.py -------------------------------------------------------------------------------- /mmrotate/utils/patch/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/utils/patch/split.py -------------------------------------------------------------------------------- /mmrotate/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/utils/setup_env.py -------------------------------------------------------------------------------- /mmrotate/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/version.py -------------------------------------------------------------------------------- /mmrotate/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/visualization/__init__.py -------------------------------------------------------------------------------- /mmrotate/visualization/local_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/visualization/local_visualizer.py -------------------------------------------------------------------------------- /mmrotate/visualization/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/mmrotate/visualization/palette.py -------------------------------------------------------------------------------- /model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/model-index.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/mminstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/requirements/mminstall.txt -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/requirements/optional.txt -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | pycocotools 4 | six 5 | terminaltables -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /resources/mmrotate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/resources/mmrotate-logo.png -------------------------------------------------------------------------------- /resources/qq_group_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/resources/qq_group_qrcode.jpg -------------------------------------------------------------------------------- /resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /results/ans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/results/ans.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_apis/test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_apis/test_inference.py -------------------------------------------------------------------------------- /tests/test_datasets/test_dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_datasets/test_dior.py -------------------------------------------------------------------------------- /tests/test_datasets/test_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_datasets/test_dota.py -------------------------------------------------------------------------------- /tests/test_datasets/test_hrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_datasets/test_hrsc.py -------------------------------------------------------------------------------- /tests/test_datasets/test_transforms/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_datasets/test_transforms/test_transforms.py -------------------------------------------------------------------------------- /tests/test_evaluation/test_metrics/test_dota_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_evaluation/test_metrics/test_dota_metric.py -------------------------------------------------------------------------------- /tests/test_evaluation/test_metrics/test_rotated_coco_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_evaluation/test_metrics/test_rotated_coco_metric.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_re_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_backbones/test_re_resnet.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_angle_branch_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_angle_branch_retina_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_cfa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_cfa_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_h2rbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_h2rbox_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_oriented_reppoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_oriented_reppoints.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_r3_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_r3_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_rotated_atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_rotated_atss_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_rotated_fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_rotated_fcos_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_rotated_reppoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_rotated_reppoints.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_rotated_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_rotated_retina_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_rotated_rtmdet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_rotated_rtmdet_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_s2a_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_s2a_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_sam_reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_dense_heads/test_sam_reppoints_head.py -------------------------------------------------------------------------------- /tests/test_models/test_detectors/test_h2rbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_detectors/test_h2rbox.py -------------------------------------------------------------------------------- /tests/test_models/test_detectors/test_refine_single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_detectors/test_refine_single_stage.py -------------------------------------------------------------------------------- /tests/test_models/test_detectors/test_single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_detectors/test_single_stage.py -------------------------------------------------------------------------------- /tests/test_models/test_detectors/test_two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_detectors/test_two_stage.py -------------------------------------------------------------------------------- /tests/test_models/test_losses/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_losses/test_loss.py -------------------------------------------------------------------------------- /tests/test_models/test_necks/test_re_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_necks/test_re_fpn.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_bbox_head/test_convfc_rbbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_roi_heads/test_bbox_head/test_convfc_rbbox_head.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_bbox_head/test_gv_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_roi_heads/test_bbox_head/test_gv_bbox_head.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_gv_ratio_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_roi_heads/test_gv_ratio_roi_head.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_assigners/test_convex_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_assigners/test_convex_assigner.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_assigners/test_max_convex_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_assigners/test_max_convex_iou_assigner.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_assigners/test_rotated_atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_assigners/test_rotated_atss_assigner.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_assigners/test_sas_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_assigners/test_sas_assigner.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_coder/test_angle_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_coder/test_angle_coder.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_coder/test_delta_midpointoffset_rbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_coder/test_delta_midpointoffset_rbbox_coder.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_coder/test_delta_xywh_hbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_coder/test_delta_xywh_hbbox_coder.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_coder/test_delta_xywh_qbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_coder/test_delta_xywh_qbbox_coder.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_coder/test_delta_xywht_hbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_coder/test_delta_xywht_hbbox_coder.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_coder/test_delta_xywht_rbbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_coder/test_delta_xywht_rbbox_coder.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_coder/test_gliding_vertex_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_coder/test_gliding_vertex_coder.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_prior_generators/test_anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_prior_generators/test_anchor_generator.py -------------------------------------------------------------------------------- /tests/test_models/test_task_modules/test_rotated_iou2d_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_models/test_task_modules/test_rotated_iou2d_calculator.py -------------------------------------------------------------------------------- /tests/test_structures/test_bbox/test_box_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_structures/test_bbox/test_box_converters.py -------------------------------------------------------------------------------- /tests/test_structures/test_bbox/test_quadri_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_structures/test_bbox/test_quadri_boxes.py -------------------------------------------------------------------------------- /tests/test_structures/test_bbox/test_rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_structures/test_bbox/test_rotated_boxes.py -------------------------------------------------------------------------------- /tests/test_visualization/test_local_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_visualization/test_local_visualizer.py -------------------------------------------------------------------------------- /tests/test_visualization/test_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tests/test_visualization/test_palette.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /tools/analysis_tools/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/analysis_tools/browse_dataset.py -------------------------------------------------------------------------------- /tools/analysis_tools/confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/analysis_tools/confusion_matrix.py -------------------------------------------------------------------------------- /tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /tools/benchmark/EVBench_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/benchmark/EVBench_evaluation.py -------------------------------------------------------------------------------- /tools/deployment/mmrotate2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/deployment/mmrotate2torchserve.py -------------------------------------------------------------------------------- /tools/deployment/mmrotate_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/deployment/mmrotate_handler.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/infer.py -------------------------------------------------------------------------------- /tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/misc/print_config.py -------------------------------------------------------------------------------- /tools/model_converters/convert_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/model_converters/convert_hf.py -------------------------------------------------------------------------------- /tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiangTodayEatsWhat/EagleVision/HEAD/tools/train.py --------------------------------------------------------------------------------