├── .gitignore ├── InternVL ├── INSTALLATION.md ├── LICENSE ├── README.md ├── README_UFO.md ├── README_zh.md ├── internvl_chat │ ├── README.md │ ├── eval │ │ ├── README.md │ │ ├── caption │ │ │ ├── README.md │ │ │ └── evaluate_caption.py │ │ ├── domain_specific │ │ │ ├── drivelm │ │ │ │ └── evaluate.py │ │ │ ├── mme_rw │ │ │ │ └── evaluate.py │ │ │ ├── rs_det │ │ │ │ ├── caculate.py │ │ │ │ └── evaluate.py │ │ │ └── rs_vqa │ │ │ │ ├── evaluate.py │ │ │ │ └── score.py │ │ ├── llava_bench │ │ │ ├── README.md │ │ │ ├── eval_gpt_review_bench.py │ │ │ ├── evaluate_llava_bench.py │ │ │ ├── rule.json │ │ │ └── summarize_gpt_review.py │ │ ├── mantis_eval │ │ │ ├── README.md │ │ │ └── evaluate_mantis.py │ │ ├── mathvista │ │ │ ├── README.md │ │ │ ├── calculate_score.py │ │ │ ├── evaluate_mathvista.py │ │ │ ├── extract_answer.py │ │ │ ├── prompts │ │ │ │ └── ext_ans.py │ │ │ └── utilities.py │ │ ├── mirb │ │ │ ├── README.md │ │ │ └── evaluate_mirb.py │ │ ├── mmbench │ │ │ ├── README.md │ │ │ └── evaluate_mmbench.py │ │ ├── mme │ │ │ ├── README.md │ │ │ ├── Your_Results │ │ │ │ ├── OCR.txt │ │ │ │ ├── artwork.txt │ │ │ │ ├── celebrity.txt │ │ │ │ ├── code_reasoning.txt │ │ │ │ ├── color.txt │ │ │ │ ├── commonsense_reasoning.txt │ │ │ │ ├── count.txt │ │ │ │ ├── existence.txt │ │ │ │ ├── landmark.txt │ │ │ │ ├── numerical_calculation.txt │ │ │ │ ├── position.txt │ │ │ │ ├── posters.txt │ │ │ │ ├── scene.txt │ │ │ │ └── text_translation.txt │ │ │ ├── calculation.py │ │ │ └── eval.py │ │ ├── mmhal │ │ │ ├── README.md │ │ │ ├── eval_gpt_mmhal.py │ │ │ └── evaluate_mmhal.py │ │ ├── mmiu │ │ │ ├── README.md │ │ │ ├── evaluate_mmiu.py │ │ │ └── mmiu.jsonl │ │ ├── mmmu │ │ │ ├── README.md │ │ │ ├── answer_dict_val.json │ │ │ ├── data_utils.py │ │ │ ├── eval_utils.py │ │ │ ├── evaluate_mmmu.py │ │ │ └── main_eval_only.py │ │ ├── mmmu_pro │ │ │ ├── README.md │ │ │ ├── evaluate.py │ │ │ ├── evaluate_mmmu_pro.py │ │ │ └── prompts.yaml │ │ ├── mmvet │ │ │ ├── README.md │ │ │ └── evaluate_mmvet.py │ │ ├── mmvetv2 │ │ │ ├── README.md │ │ │ └── evaluate_mmvet_v2.py │ │ ├── mmvp │ │ │ ├── README.md │ │ │ └── evaluate_mmvp.py │ │ ├── mpdocvqa │ │ │ ├── README.md │ │ │ ├── evaluate_vqa.py │ │ │ └── infographicsvqa_eval.py │ │ ├── mvbench │ │ │ ├── README.md │ │ │ └── evaluate_mvbench.py │ │ ├── pope │ │ │ ├── README.md │ │ │ ├── eval_pope.py │ │ │ └── evaluate_pope.py │ │ ├── refcoco │ │ │ ├── README.md │ │ │ ├── evaluate_grounding.py │ │ │ └── evaluate_grounding_ufo.py │ │ ├── scienceqa │ │ │ ├── README.md │ │ │ └── evaluate_scienceqa.py │ │ ├── seed │ │ │ ├── README.md │ │ │ ├── calculation.py │ │ │ └── evaluate_seed.py │ │ ├── tiny_lvlm │ │ │ ├── README.md │ │ │ ├── calculate_score.py │ │ │ ├── evaluate_lvlm.py │ │ │ └── tools.py │ │ └── vqa │ │ │ ├── README.md │ │ │ ├── convert_gqa_for_eval.py │ │ │ ├── evaluate_vqa.py │ │ │ ├── infographicsvqa_eval.py │ │ │ └── textvqa_eval.py │ ├── evaluate.sh │ ├── evaluate_ufo.sh │ ├── examples │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ └── image5.jpg │ ├── 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 │ │ │ │ ├── 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 │ ├── pyproject.toml │ ├── shell │ │ ├── internvl1.2 │ │ │ ├── 2nd_finetune │ │ │ │ ├── internvl_chat_v1_2_hermes2_yi34b_448_res_2nd_finetune_full.sh │ │ │ │ └── internvl_chat_v1_2_hermes2_yi34b_448_res_2nd_finetune_lora.sh │ │ │ └── hermes2_yi34b │ │ │ │ └── internvl_chat_v1_2_hermes2_yi34b_448_res_finetune.sh │ │ ├── internvl1.5 │ │ │ ├── 2nd_finetune │ │ │ │ ├── internvl_chat_v1_5_internlm2_1_8b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl_chat_v1_5_internlm2_1_8b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl_chat_v1_5_internlm2_20b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl_chat_v1_5_internlm2_20b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl_chat_v1_5_phi3_3_8b_dynamic_res_2nd_finetune_full.sh │ │ │ │ └── internvl_chat_v1_5_phi3_3_8b_dynamic_res_2nd_finetune_lora.sh │ │ │ ├── hermes2_yi34b │ │ │ │ ├── internvl_chat_v1_5_hermes2_yi34b_dynamic_res_finetune.sh │ │ │ │ └── internvl_chat_v1_5_hermes2_yi34b_dynamic_res_pretrain.sh │ │ │ ├── internlm2_1_8b │ │ │ │ ├── internvl_chat_v1_5_internlm2_1_8b_dynamic_res_finetune.sh │ │ │ │ └── internvl_chat_v1_5_internlm2_1_8b_dynamic_res_pretrain.sh │ │ │ ├── internlm2_20b │ │ │ │ ├── internvl_chat_v1_5_internlm2_20b_dynamic_res_finetune.sh │ │ │ │ └── internvl_chat_v1_5_internlm2_20b_dynamic_res_pretrain.sh │ │ │ └── phi3_3_8b │ │ │ │ ├── internvl_chat_v1_5_phi3_3_8b_dynamic_res_finetune.sh │ │ │ │ └── internvl_chat_v1_5_phi3_3_8b_dynamic_res_pretrain.sh │ │ ├── internvl2.0 │ │ │ └── 2nd_finetune │ │ │ │ ├── internvl2_1b_qwen2_0_5b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_1b_qwen2_0_5b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_26b_internlm2_20b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_26b_internlm2_20b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_2b_internlm2_1_8b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_2b_internlm2_1_8b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_2b_internlm2_1_8b_dynamic_res_2nd_finetune_lora_coco.sh │ │ │ │ ├── internvl2_40b_hermes2_yi_34b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_40b_hermes2_yi_34b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_4b_phi3_3_8b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_4b_phi3_3_8b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_76b_hermes2_llama3_70b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_76b_hermes2_llama3_70b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_8b_internlm2_7b_dynamic_res_2nd_finetune_full.sh │ │ │ │ └── internvl2_8b_internlm2_7b_dynamic_res_2nd_finetune_lora.sh │ │ ├── internvl2.0_mpo │ │ │ ├── README.md │ │ │ └── preference_optimization │ │ │ │ └── internvl2_8b_internlm2_7b_dynamic_res_mpo_full.sh │ │ ├── internvl2.5 │ │ │ ├── 2nd_finetune │ │ │ │ ├── internvl2_5_1b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_5_1b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_5_26b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_5_26b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_5_2b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_5_2b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_5_2b_dynamic_res_2nd_finetune_lora_coco.sh │ │ │ │ ├── internvl2_5_38b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_5_38b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_5_4b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_5_4b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_5_78b_dynamic_res_2nd_finetune_full.sh │ │ │ │ ├── internvl2_5_78b_dynamic_res_2nd_finetune_lora.sh │ │ │ │ ├── internvl2_5_8b_dynamic_res_2nd_finetune_full.sh │ │ │ │ └── internvl2_5_8b_dynamic_res_2nd_finetune_lora.sh │ │ │ ├── stage1.5 │ │ │ │ ├── internvl2_5_26b_internlm2_5_20b_dynamic_res_stage1_5.sh │ │ │ │ └── internvl2_5_8b_internlm2_5_7b_dynamic_res_stage1_5.sh │ │ │ ├── stage1 │ │ │ │ ├── internvl2_5_1b_qwen2_5_0_5b_dynamic_res_stage1.sh │ │ │ │ ├── internvl2_5_26b_internlm2_5_20b_dynamic_res_stage1.sh │ │ │ │ ├── internvl2_5_2b_internlm2_5_1_8b_dynamic_res_stage1.sh │ │ │ │ ├── internvl2_5_38b_qwen2_5_32b_dynamic_res_stage1.sh │ │ │ │ ├── internvl2_5_4b_qwen2_5_3b_dynamic_res_stage1.sh │ │ │ │ ├── internvl2_5_78b_qwen2_5_72b_dynamic_res_stage1.sh │ │ │ │ └── internvl2_5_8b_internlm2_5_7b_dynamic_res_stage1.sh │ │ │ └── stage2 │ │ │ │ ├── internvl2_5_1b_qwen2_5_0_5b_dynamic_res_stage2.sh │ │ │ │ ├── internvl2_5_26b_internlm2_5_20b_dynamic_res_stage2.sh │ │ │ │ ├── internvl2_5_2b_internlm2_5_1_8b_dynamic_res_stage2.sh │ │ │ │ ├── internvl2_5_38b_qwen2_5_32b_dynamic_res_stage2.sh │ │ │ │ ├── internvl2_5_4b_qwen2_5_3b_dynamic_res_stage2.sh │ │ │ │ ├── internvl2_5_78b_qwen2_5_72b_dynamic_res_stage2.sh │ │ │ │ └── internvl2_5_8b_internlm2_5_7b_dynamic_res_stage2.sh │ │ ├── internvl2.5_mpo │ │ │ └── preference_optimization │ │ │ │ ├── internvl2_5_1b_qwen2_5_0_5b_dynamic_res_mpo.sh │ │ │ │ ├── internvl2_5_26b_internlm2_5_20b_dynamic_res_mpo.sh │ │ │ │ ├── internvl2_5_2b_internlm2_5_1_8b_dynamic_res_mpo.sh │ │ │ │ ├── internvl2_5_38b_qwen2_5_32b_dynamic_res_mpo.sh │ │ │ │ ├── internvl2_5_4b_qwen2_5_3b_dynamic_res_mpo.sh │ │ │ │ ├── internvl2_5_78b_qwen2_5_72b_dynamic_res_mpo.sh │ │ │ │ └── internvl2_5_8b_internlm2_5_7b_dynamic_res_mpo.sh │ │ └── mini_internvl │ │ │ ├── README.md │ │ │ └── domain_adaptation │ │ │ ├── internvl2_1b_qwen2_0_5b_dynamic_res_finetune_bdd.sh │ │ │ ├── internvl2_1b_qwen2_0_5b_dynamic_res_finetune_drivelm.sh │ │ │ ├── internvl2_1b_qwen2_0_5b_dynamic_res_finetune_medical.sh │ │ │ ├── internvl2_1b_qwen2_0_5b_dynamic_res_finetune_remote.sh │ │ │ ├── internvl2_2b_internlm2_1_8b_dynamic_res_finetune_bdd.sh │ │ │ ├── internvl2_2b_internlm2_1_8b_dynamic_res_finetune_drivelm.sh │ │ │ ├── internvl2_2b_internlm2_1_8b_dynamic_res_finetune_medical.sh │ │ │ ├── internvl2_2b_internlm2_1_8b_dynamic_res_finetune_remote.sh │ │ │ ├── internvl2_4b_phi3_3_8b_dynamic_res_finetune_bdd.sh │ │ │ ├── internvl2_4b_phi3_3_8b_dynamic_res_finetune_drivelm.sh │ │ │ ├── internvl2_4b_phi3_3_8b_dynamic_res_finetune_medical.sh │ │ │ └── internvl2_4b_phi3_3_8b_dynamic_res_finetune_remote.sh │ ├── tools │ │ ├── convert_to_int8.py │ │ ├── extract_mlp.py │ │ ├── extract_video_frames.py │ │ ├── extract_vit.py │ │ ├── images_stitching.py │ │ ├── json2jsonl.py │ │ ├── jsonl2jsonl.py │ │ ├── merge_lora.py │ │ ├── merge_lora_custom.py │ │ ├── mmpr_pipeline │ │ │ ├── internvl_lmdeploy_correctness.py │ │ │ ├── internvl_lmdeploy_correctness_postprocess.py │ │ │ └── internvl_lmdeploy_dropout_ntp.py │ │ ├── replace_llm.py │ │ └── resize_pos_embed.py │ ├── zero_stage1_config.json │ ├── zero_stage2_config.json │ ├── zero_stage3_config.json │ ├── zero_stage3_config_100b.json │ ├── zero_stage3_config_100b_1e8.json │ ├── zero_stage3_config_34b.json │ └── zero_stage3_config_70b.json ├── internvl_g │ ├── README.md │ ├── eval │ │ └── evaluate_caption.py │ ├── evaluate.sh │ ├── internvl │ │ ├── dist_utils.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── internvl_stage2 │ │ │ │ ├── __init__.py │ │ │ │ ├── configuration_intern_vit.py │ │ │ │ ├── configuration_internvl.py │ │ │ │ ├── flash_attention.py │ │ │ │ ├── modeling_intern_vit.py │ │ │ │ ├── modeling_internvl.py │ │ │ │ └── modeling_qllama.py │ │ │ └── internvl_stage2_retrieval │ │ │ │ ├── __init__.py │ │ │ │ ├── configuration_intern_vit.py │ │ │ │ ├── configuration_internvl.py │ │ │ │ ├── flash_attention.py │ │ │ │ ├── modeling_intern_vit.py │ │ │ │ ├── modeling_internvl.py │ │ │ │ └── modeling_qllama.py │ │ └── train │ │ │ ├── __init__.py │ │ │ ├── dataset.py │ │ │ ├── internvl_stage2_finetune.py │ │ │ └── trainer_monkey_patch.py │ ├── shell │ │ ├── finetune │ │ │ ├── internvl_stage2_finetune_coco_364_bs1024_ep5.sh │ │ │ ├── internvl_stage2_finetune_flickr_364_bs1024_ep10.sh │ │ │ └── internvl_stage2_finetune_flickrcn_364_bs1024_ep10.sh │ │ ├── head_finetune │ │ │ ├── internvl_stage2_finetune_coco_224_bs1024_ep5_head_4gpu.sh │ │ │ ├── internvl_stage2_finetune_flickr_224_bs1024_ep10_head_4gpu.sh │ │ │ └── internvl_stage2_finetune_flickrcn_224_bs1024_ep10_head_4gpu.sh │ │ └── lora_finetune │ │ │ ├── internvl_stage2_finetune_coco_224_bs1024_ep5_lora16_4gpu.sh │ │ │ ├── internvl_stage2_finetune_flickr_224_bs1024_ep10_lora16_4gpu.sh │ │ │ └── internvl_stage2_finetune_flickrcn_224_bs1024_ep10_lora16_4gpu.sh │ ├── zero_stage1_config.json │ ├── zero_stage2_config.json │ └── zero_stage3_config.json ├── requirements.txt ├── requirements │ ├── classification.txt │ ├── clip_benchmark.txt │ ├── internvl_chat.txt │ ├── segmentation.txt │ └── streamlit_demo.txt ├── segmentation │ ├── README.md │ ├── configs │ │ ├── _base_ │ │ │ ├── datasets │ │ │ │ ├── ade20k.py │ │ │ │ ├── ade20k_504x504.py │ │ │ │ ├── ade20k_504x504_1of16.py │ │ │ │ ├── ade20k_504x504_1of2.py │ │ │ │ ├── ade20k_504x504_1of4.py │ │ │ │ ├── ade20k_504x504_1of8.py │ │ │ │ ├── ade20k_640x640.py │ │ │ │ ├── ade20k_896x896.py │ │ │ │ ├── chase_db1.py │ │ │ │ ├── cityscapes.py │ │ │ │ ├── cityscapes_1024x1024.py │ │ │ │ ├── cityscapes_768x768.py │ │ │ │ ├── cityscapes_769x769.py │ │ │ │ ├── cityscapes_832x832.py │ │ │ │ ├── coco-stuff10k.py │ │ │ │ ├── coco-stuff164k.py │ │ │ │ ├── coco-stuff164k_896x896.py │ │ │ │ ├── drive.py │ │ │ │ ├── hrf.py │ │ │ │ ├── isaid.py │ │ │ │ ├── loveda.py │ │ │ │ ├── pascal_context.py │ │ │ │ ├── pascal_context_59.py │ │ │ │ ├── pascal_voc12.py │ │ │ │ ├── pascal_voc12_aug.py │ │ │ │ ├── potsdam.py │ │ │ │ ├── stare.py │ │ │ │ └── vaihingen.py │ │ │ ├── default_runtime.py │ │ │ ├── models │ │ │ │ ├── ann_r50-d8.py │ │ │ │ ├── apcnet_r50-d8.py │ │ │ │ ├── bisenetv1_r18-d32.py │ │ │ │ ├── bisenetv2.py │ │ │ │ ├── ccnet_r50-d8.py │ │ │ │ ├── cgnet.py │ │ │ │ ├── danet_r50-d8.py │ │ │ │ ├── deeplabv3_r50-d8.py │ │ │ │ ├── deeplabv3_unet_s5-d16.py │ │ │ │ ├── deeplabv3plus_r50-d8.py │ │ │ │ ├── dmnet_r50-d8.py │ │ │ │ ├── dnl_r50-d8.py │ │ │ │ ├── dpt_vit-b16.py │ │ │ │ ├── emanet_r50-d8.py │ │ │ │ ├── encnet_r50-d8.py │ │ │ │ ├── erfnet_fcn.py │ │ │ │ ├── fast_scnn.py │ │ │ │ ├── fastfcn_r50-d32_jpu_psp.py │ │ │ │ ├── fcn_hr18.py │ │ │ │ ├── fcn_r50-d8.py │ │ │ │ ├── fcn_unet_s5-d16.py │ │ │ │ ├── fpn_r50.py │ │ │ │ ├── gcnet_r50-d8.py │ │ │ │ ├── icnet_r50-d8.py │ │ │ │ ├── isanet_r50-d8.py │ │ │ │ ├── lraspp_m-v3-d8.py │ │ │ │ ├── mask2former_beit.py │ │ │ │ ├── nonlocal_r50-d8.py │ │ │ │ ├── ocrnet_hr18.py │ │ │ │ ├── ocrnet_r50-d8.py │ │ │ │ ├── pointrend_r50.py │ │ │ │ ├── psanet_r50-d8.py │ │ │ │ ├── pspnet_r50-d8.py │ │ │ │ ├── pspnet_unet_s5-d16.py │ │ │ │ ├── segformer_mit-b0.py │ │ │ │ ├── segmenter_vit-b16_mask.py │ │ │ │ ├── setr_mla.py │ │ │ │ ├── setr_naive.py │ │ │ │ ├── setr_pup.py │ │ │ │ ├── stdc.py │ │ │ │ ├── twins_pcpvt-s_fpn.py │ │ │ │ ├── twins_pcpvt-s_upernet.py │ │ │ │ ├── upernet_beit.py │ │ │ │ ├── upernet_convnext.py │ │ │ │ ├── upernet_mae.py │ │ │ │ ├── upernet_r50.py │ │ │ │ ├── upernet_swin.py │ │ │ │ └── upernet_vit-b16_ln_mln.py │ │ │ └── schedules │ │ │ │ ├── schedule_10k.py │ │ │ │ ├── schedule_160k.py │ │ │ │ ├── schedule_20k.py │ │ │ │ ├── schedule_320k.py │ │ │ │ ├── schedule_40k.py │ │ │ │ ├── schedule_5k.py │ │ │ │ └── schedule_80k.py │ │ └── intern_vit_6b │ │ │ ├── few_shot │ │ │ ├── linear_intern_vit_6b_504_10k_ade20k_bs16_lr4e-5_1of8.py │ │ │ ├── linear_intern_vit_6b_504_20k_ade20k_bs16_lr4e-5_1of4.py │ │ │ ├── linear_intern_vit_6b_504_40k_ade20k_bs16_lr4e-5_1of2.py │ │ │ ├── linear_intern_vit_6b_504_5k_ade20k_bs16_lr4e-5_1of16.py │ │ │ └── linear_intern_vit_6b_504_80k_ade20k_bs16_lr4e-5_1of1.py │ │ │ ├── full_tuning │ │ │ └── upernet_intern_vit_6b_504_80k_ade20k_bs16_lr4e-5.py │ │ │ ├── head_tuning │ │ │ └── upernet_intern_vit_6b_504_80k_ade20k_bs16_lr4e-5_frozen.py │ │ │ └── linear_probing │ │ │ └── linear_intern_vit_6b_504_80k_ade20k_bs16_lr4e-5_frozen.py │ ├── dist_test.sh │ ├── dist_train.sh │ ├── mmcv_custom │ │ ├── __init__.py │ │ ├── ddp_hooks.py │ │ └── layer_decay_optimizer_constructor.py │ ├── mmseg_custom │ │ ├── __init__.py │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── ade.py │ │ │ └── pipelines │ │ │ │ ├── __init__.py │ │ │ │ └── transform.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── flash_attention.py │ │ │ └── intern_vit_6b.py │ │ │ └── decode_heads │ │ │ ├── __init__.py │ │ │ └── fcn_head.py │ ├── release.py │ ├── slurm_test.sh │ ├── slurm_train.sh │ ├── test.py │ ├── train.py │ └── zero_configs │ │ ├── adam_fp16.json │ │ ├── adam_zero1_amp.json │ │ ├── adam_zero1_bf16.json │ │ ├── adam_zero1_fp16.json │ │ ├── adam_zero2_bf16.json │ │ ├── adam_zero2_fp16.json │ │ └── adam_zero3_fp16.json └── video_retrieval │ └── test_msrvtt.py ├── README.md ├── assets ├── Figure1.png ├── demo.png ├── demo2.png └── demo_result.gif ├── configs ├── UFO-InternVL2_5-8B-multitask │ ├── multi_1344_4w.py │ ├── multi_1344_4w_test.py │ ├── multi_448_30w.py │ ├── multi_448_30w_test.py │ ├── multi_896_6w.py │ └── multi_896_6w_test.py ├── UFO-InternVL2_5-8B │ ├── internvl2_5_8b_instruction_12w.py │ ├── internvl2_5_8b_instruction_896_4w.py │ ├── internvl2_5_8b_reasonseg_ft_1w.py │ ├── internvl2_5_8b_reasonseg_ft_1w_test.py │ ├── internvl2_5_8b_rec_ft_2w.py │ ├── internvl2_5_8b_res_ft_2w.py │ └── internvl2_5_8b_res_ft_2w_test.py ├── UFO-LLaVA1.5-7B │ ├── llava1.5_7b_instruction_12w.py │ ├── llava1.5_7b_instruction_12w_deepspeed.py │ ├── llava1.5_7b_reasonseg_ft_1w.py │ ├── llava1.5_7b_rec_ft_2w.py │ └── llava1.5_7b_res_ft_2w.py ├── UFO-ViT │ ├── multi_fivetask_base.py │ ├── multi_fivetask_huge.py │ ├── multi_fivetask_large.py │ ├── single_caption_base.py │ ├── single_detection_base.py │ ├── single_ground_base.py │ ├── single_insseg_base.py │ └── single_semseg_base.py └── _base_ │ ├── caption_default_runtime.py │ ├── datasets │ ├── ade20k.py │ ├── ade20k_vis.py │ ├── cityscapes_detection.py │ ├── cityscapes_instance.py │ ├── coco_caption.py │ ├── coco_detection.py │ ├── coco_instance.py │ ├── coco_instance_semantic.py │ ├── coco_panoptic.py │ ├── deepfashion.py │ ├── lvis_v0.5_instance.py │ ├── lvis_v1_instance.py │ ├── objects365v1_detection.py │ ├── objects365v2_detection.py │ ├── openimages_detection.py │ ├── semi_coco_detection.py │ ├── v3det.py │ ├── voc0712.py │ └── wider_face.py │ ├── default_runtime.py │ ├── models │ ├── cascade-mask-rcnn_r50_fpn.py │ ├── cascade-rcnn_r50_fpn.py │ ├── fast-rcnn_r50_fpn.py │ ├── faster-rcnn_r50-caffe-c4.py │ ├── faster-rcnn_r50-caffe-dc5.py │ ├── faster-rcnn_r50_fpn.py │ ├── mask-rcnn_r50-caffe-c4.py │ ├── mask-rcnn_r50_fpn.py │ ├── retinanet_r50_fpn.py │ ├── rpn_r50-caffe-c4.py │ ├── rpn_r50_fpn.py │ └── ssd300.py │ ├── schedules │ ├── schedule_1x.py │ ├── schedule_20e.py │ └── schedule_2x.py │ └── seg_default_runtime.py ├── demo.py ├── demo └── demo.jpg ├── docs ├── en │ ├── Makefile │ ├── UFO_commands.md │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── image │ │ │ └── mmdet-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 │ │ ├── structures.md │ │ └── transforms.md │ ├── api.rst │ ├── conf.py │ ├── customize_dataset.md │ ├── dataset_zoo.md │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── migration.md │ ├── migration │ │ ├── api_and_registry_migration.md │ │ ├── config_migration.md │ │ ├── dataset_migration.md │ │ ├── migration.md │ │ ├── migration_faq.md │ │ └── model_migration.md │ ├── model_zoo.md │ ├── notes │ │ ├── changelog.md │ │ ├── changelog_v2.x.md │ │ ├── compatibility.md │ │ ├── contribution_guide.md │ │ ├── faq.md │ │ └── projects.md │ ├── overview.md │ ├── stat.py │ ├── switch_language.md │ └── user_guides │ │ ├── config.md │ │ ├── dataset_prepare.md │ │ ├── deploy.md │ │ ├── finetune.md │ │ ├── index.rst │ │ ├── inference.md │ │ ├── init_cfg.md │ │ ├── label_studio.md │ │ ├── new_model.md │ │ ├── robustness_benchmarking.md │ │ ├── semi_det.md │ │ ├── single_stage_as_rpn.md │ │ ├── test.md │ │ ├── test_results_submission.md │ │ ├── train.md │ │ ├── useful_hooks.md │ │ ├── useful_tools.md │ │ └── visualization.md └── zh_cn │ ├── Makefile │ ├── _static │ ├── css │ │ └── readthedocs.css │ └── image │ │ └── mmdet-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 │ ├── structures.md │ └── transforms.md │ ├── api.rst │ ├── article.md │ ├── conf.py │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── migration │ ├── api_and_registry_migration.md │ ├── config_migration.md │ ├── dataset_migration.md │ ├── migration.md │ ├── migration_faq.md │ └── model_migration.md │ ├── model_zoo.md │ ├── notes │ ├── compatibility.md │ ├── faq.md │ └── projects.md │ ├── overview.md │ ├── stat.py │ ├── switch_language.md │ └── user_guides │ ├── config.md │ ├── dataset_prepare.md │ ├── deploy.md │ ├── finetune.md │ ├── index.rst │ ├── inference.md │ ├── init_cfg.md │ ├── label_studio.md │ ├── new_model.md │ ├── robustness_benchmarking.md │ ├── semi_det.md │ ├── single_stage_as_rpn.md │ ├── test.md │ ├── test_results_submission.md │ ├── train.md │ ├── useful_hooks.md │ ├── useful_tools.md │ └── visualization.md ├── mmdet ├── __init__.py ├── apis │ ├── __init__.py │ ├── det_inferencer.py │ ├── inference.py │ ├── mmseg_inferencer.py │ └── visualizer │ │ ├── __init__.py │ │ ├── image_vis.py │ │ ├── open3d_vis.py │ │ └── show_result.py ├── datasets │ ├── __init__.py │ ├── ade.py │ ├── ade20k.py │ ├── api_wrappers │ │ ├── __init__.py │ │ ├── coco_api.py │ │ └── cocoeval_mp.py │ ├── base_det_dataset.py │ ├── basesegdataset.py │ ├── cityscapes.py │ ├── coco.py │ ├── coco_caption.py │ ├── coco_panoptic.py │ ├── coco_stuff.py │ ├── conversation.py │ ├── crowdhuman.py │ ├── data_processing.py │ ├── dataset_wrappers.py │ ├── deepfashion.py │ ├── drive.py │ ├── flickr30k.py │ ├── llava_665k.py │ ├── llava_onevision.py │ ├── lvis.py │ ├── mapillary.py │ ├── nuimage.py │ ├── nuimage_seg.py │ ├── objects365.py │ ├── openimages.py │ ├── openimages_inseg.py │ ├── paco_lvis.py │ ├── pascal_context.py │ ├── pascal_part.py │ ├── reason_seg.py │ ├── refcoco.py │ ├── refer.py │ ├── refer_seg.py │ ├── samplers │ │ ├── __init__.py │ │ ├── batch_sampler.py │ │ ├── class_aware_sampler.py │ │ ├── multi_data_sampler.py │ │ └── multi_source_sampler.py │ ├── transforms │ │ ├── __init__.py │ │ ├── augment_wrappers.py │ │ ├── colorspace.py │ │ ├── formatting.py │ │ ├── geometric.py │ │ ├── instaboost.py │ │ ├── loading.py │ │ ├── seg_loading.py │ │ ├── transforms.py │ │ └── wrappers.py │ ├── utils.py │ ├── voc.py │ ├── wider_face.py │ └── xml_style.py ├── engine │ ├── __init__.py │ ├── hooks │ │ ├── __init__.py │ │ ├── checkloss_hook.py │ │ ├── mean_teacher_hook.py │ │ ├── memory_profiler_hook.py │ │ ├── num_class_check_hook.py │ │ ├── pipeline_switch_hook.py │ │ ├── seg_visualization_hook.py │ │ ├── set_epoch_info_hook.py │ │ ├── sync_norm_hook.py │ │ ├── utils.py │ │ ├── visualization_hook.py │ │ └── yolox_mode_switch_hook.py │ ├── optimizers │ │ ├── GaloreAdam.py │ │ ├── __init__.py │ │ ├── galore_constructor.py │ │ └── layer_decay_optimizer_constructor.py │ ├── runner │ │ ├── __init__.py │ │ └── loops.py │ └── schedulers │ │ ├── __init__.py │ │ └── quadratic_warmup.py ├── evaluation │ ├── __init__.py │ ├── evaluator │ │ ├── __init__.py │ │ └── multi_datasets_evaluator.py │ ├── functional │ │ ├── __init__.py │ │ ├── bbox_overlaps.py │ │ ├── cityscapes_utils.py │ │ ├── class_names.py │ │ ├── mean_ap.py │ │ ├── panoptic_utils.py │ │ └── recall.py │ └── metrics │ │ ├── __init__.py │ │ ├── caption.py │ │ ├── cityscapes_metric.py │ │ ├── coco_metric.py │ │ ├── coco_occluded_metric.py │ │ ├── coco_panoptic_metric.py │ │ ├── crowdhuman_metric.py │ │ ├── dump_det_results.py │ │ ├── dump_proposals_metric.py │ │ ├── iou_metric.py │ │ ├── iou_metric_binary.py │ │ ├── iou_metric_binary_best.py │ │ ├── lvis_metric.py │ │ ├── nocaps.py │ │ ├── openimages_inseg_metric.py │ │ ├── openimages_metric.py │ │ ├── visual_grounding_eval.py │ │ └── voc_metric.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── __init__.py │ │ ├── base_backbone.py │ │ ├── csp_darknet.py │ │ ├── cspnext.py │ │ ├── darknet.py │ │ ├── detectors_resnet.py │ │ ├── detectors_resnext.py │ │ ├── efficientnet.py │ │ ├── hourglass.py │ │ ├── hrnet.py │ │ ├── mmseg_resnet.py │ │ ├── mobilenet_v2.py │ │ ├── pvt.py │ │ ├── regnet.py │ │ ├── res2net.py │ │ ├── resnest.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ ├── ssd_vgg.py │ │ ├── swin.py │ │ ├── trident_resnet.py │ │ ├── vit_git.py │ │ └── vit_ufo.py │ ├── data_preprocessors │ │ ├── __init__.py │ │ └── data_preprocessor.py │ ├── dense_heads │ │ ├── __init__.py │ │ ├── anchor_free_head.py │ │ ├── anchor_head.py │ │ ├── atss_head.py │ │ ├── autoassign_head.py │ │ ├── base_dense_head.py │ │ ├── base_mask_head.py │ │ ├── beam_search.py │ │ ├── boxinst_head.py │ │ ├── cascade_rpn_head.py │ │ ├── centernet_head.py │ │ ├── centernet_update_head.py │ │ ├── centripetal_head.py │ │ ├── condinst_head.py │ │ ├── conditional_detr_head.py │ │ ├── corner_head.py │ │ ├── dab_detr_head.py │ │ ├── dataset_labels.py │ │ ├── ddod_head.py │ │ ├── deformable_detr_head.py │ │ ├── dense_test_mixins.py │ │ ├── detr_head.py │ │ ├── dino_head.py │ │ ├── dino_layers.py │ │ ├── embedding_rpn_head.py │ │ ├── fcos_head.py │ │ ├── fovea_head.py │ │ ├── free_anchor_retina_head.py │ │ ├── fsaf_head.py │ │ ├── ga_retina_head.py │ │ ├── ga_rpn_head.py │ │ ├── gfl_head.py │ │ ├── git_caption_head.py │ │ ├── git_det_head.py │ │ ├── git_grounding_head.py │ │ ├── git_insseg_head.py │ │ ├── git_semseg_head.py │ │ ├── guided_anchor_head.py │ │ ├── internvl_constants.py │ │ ├── internvl_conversation.py │ │ ├── lad_head.py │ │ ├── ld_head.py │ │ ├── llava_constants.py │ │ ├── llava_conversation.py │ │ ├── llava_mm_utils.py │ │ ├── mask2former_head.py │ │ ├── mask2former_semhead.py │ │ ├── mask_postprocess.py │ │ ├── maskformer_head.py │ │ ├── nasfcos_head.py │ │ ├── paa_head.py │ │ ├── pisa_retinanet_head.py │ │ ├── pisa_ssd_head.py │ │ ├── reppoints_head.py │ │ ├── retina_head.py │ │ ├── retina_sepbn_head.py │ │ ├── rpn_head.py │ │ ├── rtmdet_head.py │ │ ├── rtmdet_ins_head.py │ │ ├── sabl_retina_head.py │ │ ├── solo_head.py │ │ ├── solov2_head.py │ │ ├── ssd_head.py │ │ ├── tood_head.py │ │ ├── ufo_internvl_caption_head.py │ │ ├── ufo_internvl_det_head.py │ │ ├── ufo_internvl_ground_head.py │ │ ├── ufo_internvl_insseg_head.py │ │ ├── ufo_internvl_reasonseg_head.py │ │ ├── ufo_internvl_referseg_head.py │ │ ├── ufo_internvl_semseg_head.py │ │ ├── ufo_internvl_vqa_head.py │ │ ├── ufo_llava_det_head.py │ │ ├── ufo_llava_ground_head.py │ │ ├── ufo_llava_insseg_head.py │ │ ├── ufo_llava_reasonseg_head.py │ │ ├── ufo_llava_referseg_head.py │ │ ├── ufo_llava_semseg_head.py │ │ ├── ufo_llava_vqa_head.py │ │ ├── ufo_vit_caption_head.py │ │ ├── ufo_vit_det_head.py │ │ ├── ufo_vit_ground_head.py │ │ ├── ufo_vit_insseg_head.py │ │ ├── ufo_vit_semseg_head.py │ │ ├── vfnet_head.py │ │ ├── yolact_head.py │ │ ├── yolo_head.py │ │ ├── yolof_head.py │ │ └── yolox_head.py │ ├── detectors │ │ ├── __init__.py │ │ ├── atss.py │ │ ├── autoassign.py │ │ ├── base.py │ │ ├── base_3d.py │ │ ├── base_detr.py │ │ ├── boxinst.py │ │ ├── cascade_rcnn.py │ │ ├── centernet.py │ │ ├── condinst.py │ │ ├── conditional_detr.py │ │ ├── cornernet.py │ │ ├── crowddet.py │ │ ├── d2_wrapper.py │ │ ├── dab_detr.py │ │ ├── ddod.py │ │ ├── deformable_detr.py │ │ ├── detr.py │ │ ├── dino.py │ │ ├── encoder_decoder.py │ │ ├── fast_rcnn.py │ │ ├── faster_rcnn.py │ │ ├── fcos.py │ │ ├── fovea.py │ │ ├── fsaf.py │ │ ├── gfl.py │ │ ├── git.py │ │ ├── grid_rcnn.py │ │ ├── htc.py │ │ ├── imvotenet.py │ │ ├── internvl_conversation.py │ │ ├── internvl_utils.py │ │ ├── kd_one_stage.py │ │ ├── lad.py │ │ ├── llava │ │ │ ├── __init__.py │ │ │ ├── llava.py │ │ │ └── modules.py │ │ ├── llava_utils.py │ │ ├── mask2former.py │ │ ├── mask_rcnn.py │ │ ├── mask_scoring_rcnn.py │ │ ├── maskformer.py │ │ ├── nasfcos.py │ │ ├── paa.py │ │ ├── panoptic_fpn.py │ │ ├── panoptic_two_stage_segmentor.py │ │ ├── point_rend.py │ │ ├── queryinst.py │ │ ├── reppoints_detector.py │ │ ├── retinanet.py │ │ ├── rpn.py │ │ ├── rtmdet.py │ │ ├── scnet.py │ │ ├── semi_base.py │ │ ├── single_stage.py │ │ ├── single_stage_instance_seg.py │ │ ├── soft_teacher.py │ │ ├── solo.py │ │ ├── solov2.py │ │ ├── sparse_rcnn.py │ │ ├── tood.py │ │ ├── trident_faster_rcnn.py │ │ ├── two_stage.py │ │ ├── ufo_internvl.py │ │ ├── ufo_internvl_full.py │ │ ├── ufo_llava.py │ │ ├── ufo_vit.py │ │ ├── vfnet.py │ │ ├── yolact.py │ │ ├── yolo.py │ │ ├── yolof.py │ │ └── yolox.py │ ├── layers │ │ ├── __init__.py │ │ ├── activations.py │ │ ├── bbox_nms.py │ │ ├── brick_wrappers.py │ │ ├── conv_upsample.py │ │ ├── csp_layer.py │ │ ├── dropblock.py │ │ ├── ema.py │ │ ├── inverted_residual.py │ │ ├── matrix_nms.py │ │ ├── msdeformattn_pixel_decoder.py │ │ ├── normed_predictor.py │ │ ├── pixel_decoder.py │ │ ├── positional_encoding.py │ │ ├── res_layer.py │ │ ├── se_layer.py │ │ └── transformer │ │ │ ├── __init__.py │ │ │ ├── conditional_detr_layers.py │ │ │ ├── dab_detr_layers.py │ │ │ ├── deformable_detr_layers.py │ │ │ ├── detr_layers.py │ │ │ ├── dino_layers.py │ │ │ ├── mask2former_layers.py │ │ │ └── utils.py │ ├── losses │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── ae_loss.py │ │ ├── balanced_l1_loss.py │ │ ├── cross_entropy_loss.py │ │ ├── dice_loss.py │ │ ├── focal_loss.py │ │ ├── gaussian_focal_loss.py │ │ ├── gfocal_loss.py │ │ ├── ghm_loss.py │ │ ├── iou_loss.py │ │ ├── kd_loss.py │ │ ├── mse_loss.py │ │ ├── pisa_loss.py │ │ ├── seesaw_loss.py │ │ ├── smooth_l1_loss.py │ │ ├── utils.py │ │ └── varifocal_loss.py │ ├── necks │ │ ├── __init__.py │ │ ├── bfp.py │ │ ├── channel_mapper.py │ │ ├── cspnext_pafpn.py │ │ ├── ct_resnet_neck.py │ │ ├── dilated_encoder.py │ │ ├── dyhead.py │ │ ├── fpg.py │ │ ├── fpn.py │ │ ├── fpn_carafe.py │ │ ├── hrfpn.py │ │ ├── nas_fpn.py │ │ ├── nasfcos_fpn.py │ │ ├── pafpn.py │ │ ├── rfp.py │ │ ├── ssd_neck.py │ │ ├── ssh.py │ │ ├── yolo_neck.py │ │ └── yolox_pafpn.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── base_roi_head.py │ │ ├── bbox_heads │ │ │ ├── __init__.py │ │ │ ├── bbox_head.py │ │ │ ├── convfc_bbox_head.py │ │ │ ├── dii_head.py │ │ │ ├── double_bbox_head.py │ │ │ ├── multi_instance_bbox_head.py │ │ │ ├── sabl_head.py │ │ │ └── scnet_bbox_head.py │ │ ├── cascade_roi_head.py │ │ ├── double_roi_head.py │ │ ├── dynamic_roi_head.py │ │ ├── grid_roi_head.py │ │ ├── htc_roi_head.py │ │ ├── mask_heads │ │ │ ├── __init__.py │ │ │ ├── coarse_mask_head.py │ │ │ ├── dynamic_mask_head.py │ │ │ ├── fcn_mask_head.py │ │ │ ├── feature_relay_head.py │ │ │ ├── fused_semantic_head.py │ │ │ ├── global_context_head.py │ │ │ ├── grid_head.py │ │ │ ├── htc_mask_head.py │ │ │ ├── mask_point_head.py │ │ │ ├── maskiou_head.py │ │ │ ├── scnet_mask_head.py │ │ │ └── scnet_semantic_head.py │ │ ├── mask_scoring_roi_head.py │ │ ├── multi_instance_roi_head.py │ │ ├── pisa_roi_head.py │ │ ├── point_rend_roi_head.py │ │ ├── roi_extractors │ │ │ ├── __init__.py │ │ │ ├── base_roi_extractor.py │ │ │ ├── generic_roi_extractor.py │ │ │ └── single_level_roi_extractor.py │ │ ├── scnet_roi_head.py │ │ ├── shared_heads │ │ │ ├── __init__.py │ │ │ └── res_layer.py │ │ ├── sparse_roi_head.py │ │ ├── standard_roi_head.py │ │ ├── test_mixins.py │ │ └── trident_roi_head.py │ ├── seg_heads │ │ ├── __init__.py │ │ ├── base_semantic_head.py │ │ ├── panoptic_fpn_head.py │ │ └── panoptic_fusion_heads │ │ │ ├── __init__.py │ │ │ ├── base_panoptic_fusion_head.py │ │ │ ├── heuristic_fusion_head.py │ │ │ └── maskformer_fusion_head.py │ ├── task_modules │ │ ├── __init__.py │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── approx_max_iou_assigner.py │ │ │ ├── assign_result.py │ │ │ ├── atss_assigner.py │ │ │ ├── base_assigner.py │ │ │ ├── center_region_assigner.py │ │ │ ├── dynamic_soft_label_assigner.py │ │ │ ├── grid_assigner.py │ │ │ ├── hungarian_assigner.py │ │ │ ├── hungarian_twice_assigner.py │ │ │ ├── hungarian_twice_mask_assigner.py │ │ │ ├── iou2d_calculator.py │ │ │ ├── match_cost.py │ │ │ ├── max_iou_assigner.py │ │ │ ├── multi_instance_assigner.py │ │ │ ├── point_assigner.py │ │ │ ├── region_assigner.py │ │ │ ├── sim_ota_assigner.py │ │ │ ├── task_aligned_assigner.py │ │ │ └── uniform_assigner.py │ │ ├── builder.py │ │ ├── coders │ │ │ ├── __init__.py │ │ │ ├── base_bbox_coder.py │ │ │ ├── bucketing_bbox_coder.py │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ ├── distance_point_bbox_coder.py │ │ │ ├── legacy_delta_xywh_bbox_coder.py │ │ │ ├── pseudo_bbox_coder.py │ │ │ ├── tblr_bbox_coder.py │ │ │ └── yolo_bbox_coder.py │ │ ├── prior_generators │ │ │ ├── __init__.py │ │ │ ├── anchor_generator.py │ │ │ ├── point_generator.py │ │ │ └── utils.py │ │ └── samplers │ │ │ ├── __init__.py │ │ │ ├── base_sampler.py │ │ │ ├── combined_sampler.py │ │ │ ├── instance_balanced_pos_sampler.py │ │ │ ├── iou_balanced_neg_sampler.py │ │ │ ├── mask_pseudo_sampler.py │ │ │ ├── mask_sampling_result.py │ │ │ ├── multi_instance_random_sampler.py │ │ │ ├── multi_instance_sampling_result.py │ │ │ ├── ohem_sampler.py │ │ │ ├── pseudo_sampler.py │ │ │ ├── random_sampler.py │ │ │ ├── sampling_result.py │ │ │ └── score_hlr_sampler.py │ ├── test_time_augs │ │ ├── __init__.py │ │ ├── det_tta.py │ │ └── merge_augs.py │ └── utils │ │ ├── __init__.py │ │ ├── clip_generator_helper.py │ │ ├── embed.py │ │ ├── gaussian_target.py │ │ ├── helpers.py │ │ ├── huggingface.py │ │ ├── make_divisible.py │ │ ├── misc.py │ │ ├── norm.py │ │ ├── panoptic_gt_processing.py │ │ ├── point_sample.py │ │ ├── seg_warppers.py │ │ ├── text_embedding.py │ │ └── tokenizer.py ├── registry.py ├── structures │ ├── __init__.py │ ├── bbox │ │ ├── __init__.py │ │ ├── base_boxes.py │ │ ├── bbox_overlaps.py │ │ ├── box_type.py │ │ ├── horizontal_boxes.py │ │ └── transforms.py │ ├── data_sample.py │ ├── det_data_sample.py │ ├── mask │ │ ├── __init__.py │ │ ├── mask_target.py │ │ ├── structures.py │ │ └── utils.py │ ├── seg_data_sample.py │ └── utils.py ├── testing │ ├── __init__.py │ ├── _fast_stop_training_hook.py │ └── _utils.py ├── utils │ ├── __init__.py │ ├── benchmark.py │ ├── class_names.py │ ├── collect_env.py │ ├── compat_config.py │ ├── contextmanagers.py │ ├── dependency.py │ ├── dist_utils.py │ ├── io.py │ ├── logger.py │ ├── memory.py │ ├── misc.py │ ├── profiling.py │ ├── replace_cfg_vals.py │ ├── setup_env.py │ ├── split_batch.py │ ├── typing_utils.py │ ├── util_mixins.py │ └── util_random.py ├── version.py └── visualization │ ├── __init__.py │ ├── local_visualizer.py │ ├── palette.py │ ├── seg_local_visualizer.py │ ├── utils.py │ └── visualizer.py ├── modeling_internvl_chat.py ├── requirements ├── albu.txt ├── build.txt ├── docs.txt ├── mminstall.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── setup.py └── tools ├── analysis_tools ├── analyze_logs.py ├── analyze_results.py ├── benchmark.py ├── browse_dataset.py ├── browse_dataset_seg.py ├── coco_error_analysis.py ├── coco_occluded_separated_recall.py ├── confusion_matrix.py ├── eval_metric.py ├── get_flops.py ├── optimize_anchors.py ├── robustness_eval.py └── test_robustness.py ├── dataset_converters ├── cityscapes.py ├── cityscapes_seg.py ├── coco_stuff164k.py ├── goldg2odvg.py ├── grit2odvg.py ├── images2coco.py ├── isaid.py ├── nuimage_converter.py └── pascal_voc.py ├── dataset_preprocess ├── dataset_prepare.md ├── download_open_inseg.py ├── kitti2coco.py ├── link_nuimage_seg.py ├── save_oim_dict.py ├── sort_instances.py └── sort_instances_v2.py ├── deployment ├── mmdet2torchserve.py ├── mmdet_handler.py └── test_torchserver.py ├── dist_test.sh ├── dist_train.sh ├── dist_train_multi.sh ├── dist_train_multi_8.sh ├── misc ├── download_dataset.py ├── download_dataset_part2.py ├── download_dataset_part3.py ├── download_dataset_part4.py ├── gen_coco_panoptic_test_info.py ├── get_crowdhuman_id_hw.py ├── get_image_metas.py ├── print_config.py └── split_coco.py ├── model_converters ├── detectron2_to_mmdet.py ├── detectron2pytorch.py ├── publish_model.py ├── regnet2mmdet.py ├── selfsup2mmdet.py ├── upgrade_model_version.py └── upgrade_ssd_version.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/.gitignore -------------------------------------------------------------------------------- /InternVL/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/INSTALLATION.md -------------------------------------------------------------------------------- /InternVL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/LICENSE -------------------------------------------------------------------------------- /InternVL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/README.md -------------------------------------------------------------------------------- /InternVL/README_UFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/README_UFO.md -------------------------------------------------------------------------------- /InternVL/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/README_zh.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/caption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/caption/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/llava_bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/llava_bench/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/llava_bench/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/llava_bench/rule.json -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mantis_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mantis_eval/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mathvista/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mathvista/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mathvista/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mathvista/utilities.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mirb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mirb/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mirb/evaluate_mirb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mirb/evaluate_mirb.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmbench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmbench/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mme/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mme/Your_Results/OCR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mme/Your_Results/OCR.txt -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mme/Your_Results/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mme/Your_Results/color.txt -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mme/Your_Results/count.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mme/Your_Results/count.txt -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mme/Your_Results/scene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mme/Your_Results/scene.txt -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mme/calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mme/calculation.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mme/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mme/eval.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmhal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmhal/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmhal/eval_gpt_mmhal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmhal/eval_gpt_mmhal.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmhal/evaluate_mmhal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmhal/evaluate_mmhal.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmiu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmiu/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmiu/evaluate_mmiu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmiu/evaluate_mmiu.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmiu/mmiu.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmiu/mmiu.jsonl -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu/answer_dict_val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu/answer_dict_val.json -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu/data_utils.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu/eval_utils.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu/evaluate_mmmu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu/evaluate_mmmu.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu/main_eval_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu/main_eval_only.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu_pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu_pro/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu_pro/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu_pro/evaluate.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmmu_pro/prompts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmmu_pro/prompts.yaml -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmvet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmvet/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmvet/evaluate_mmvet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmvet/evaluate_mmvet.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmvetv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmvetv2/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmvp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmvp/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mmvp/evaluate_mmvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mmvp/evaluate_mmvp.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mpdocvqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mpdocvqa/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mpdocvqa/evaluate_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mpdocvqa/evaluate_vqa.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/mvbench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/mvbench/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/pope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/pope/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/pope/eval_pope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/pope/eval_pope.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/pope/evaluate_pope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/pope/evaluate_pope.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/refcoco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/refcoco/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/scienceqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/scienceqa/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/seed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/seed/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/seed/calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/seed/calculation.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/seed/evaluate_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/seed/evaluate_seed.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/tiny_lvlm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/tiny_lvlm/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/tiny_lvlm/evaluate_lvlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/tiny_lvlm/evaluate_lvlm.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/tiny_lvlm/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/tiny_lvlm/tools.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/vqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/vqa/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/vqa/evaluate_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/vqa/evaluate_vqa.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/eval/vqa/textvqa_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/eval/vqa/textvqa_eval.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/evaluate.sh -------------------------------------------------------------------------------- /InternVL/internvl_chat/evaluate_ufo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/evaluate_ufo.sh -------------------------------------------------------------------------------- /InternVL/internvl_chat/examples/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/examples/image1.jpg -------------------------------------------------------------------------------- /InternVL/internvl_chat/examples/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/examples/image2.jpg -------------------------------------------------------------------------------- /InternVL/internvl_chat/examples/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/examples/image3.jpg -------------------------------------------------------------------------------- /InternVL/internvl_chat/examples/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/examples/image4.jpg -------------------------------------------------------------------------------- /InternVL/internvl_chat/examples/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/examples/image5.jpg -------------------------------------------------------------------------------- /InternVL/internvl_chat/internvl/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/internvl/conversation.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/internvl/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/internvl/dist_utils.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/internvl/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/internvl/model/__init__.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/internvl/patch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/internvl/patch/__init__.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/internvl/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/internvl/train/__init__.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/internvl/train/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/internvl/train/constants.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/internvl/train/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/internvl/train/dataset.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/internvl/train/trainer_dpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/internvl/train/trainer_dpo.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/pyproject.toml -------------------------------------------------------------------------------- /InternVL/internvl_chat/shell/internvl2.0_mpo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/shell/internvl2.0_mpo/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/shell/mini_internvl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/shell/mini_internvl/README.md -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/convert_to_int8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/convert_to_int8.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/extract_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/extract_mlp.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/extract_video_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/extract_video_frames.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/extract_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/extract_vit.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/images_stitching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/images_stitching.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/json2jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/json2jsonl.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/jsonl2jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/jsonl2jsonl.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/merge_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/merge_lora.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/merge_lora_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/merge_lora_custom.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/replace_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/replace_llm.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/tools/resize_pos_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/tools/resize_pos_embed.py -------------------------------------------------------------------------------- /InternVL/internvl_chat/zero_stage1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/zero_stage1_config.json -------------------------------------------------------------------------------- /InternVL/internvl_chat/zero_stage2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/zero_stage2_config.json -------------------------------------------------------------------------------- /InternVL/internvl_chat/zero_stage3_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/zero_stage3_config.json -------------------------------------------------------------------------------- /InternVL/internvl_chat/zero_stage3_config_100b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/zero_stage3_config_100b.json -------------------------------------------------------------------------------- /InternVL/internvl_chat/zero_stage3_config_34b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/zero_stage3_config_34b.json -------------------------------------------------------------------------------- /InternVL/internvl_chat/zero_stage3_config_70b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_chat/zero_stage3_config_70b.json -------------------------------------------------------------------------------- /InternVL/internvl_g/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_g/README.md -------------------------------------------------------------------------------- /InternVL/internvl_g/eval/evaluate_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_g/eval/evaluate_caption.py -------------------------------------------------------------------------------- /InternVL/internvl_g/evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_g/evaluate.sh -------------------------------------------------------------------------------- /InternVL/internvl_g/internvl/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_g/internvl/dist_utils.py -------------------------------------------------------------------------------- /InternVL/internvl_g/internvl/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InternVL/internvl_g/internvl/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InternVL/internvl_g/internvl/train/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_g/internvl/train/dataset.py -------------------------------------------------------------------------------- /InternVL/internvl_g/zero_stage1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_g/zero_stage1_config.json -------------------------------------------------------------------------------- /InternVL/internvl_g/zero_stage2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_g/zero_stage2_config.json -------------------------------------------------------------------------------- /InternVL/internvl_g/zero_stage3_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/internvl_g/zero_stage3_config.json -------------------------------------------------------------------------------- /InternVL/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/requirements.txt -------------------------------------------------------------------------------- /InternVL/requirements/classification.txt: -------------------------------------------------------------------------------- 1 | gdown 2 | termcolor 3 | yacs 4 | -------------------------------------------------------------------------------- /InternVL/requirements/clip_benchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/requirements/clip_benchmark.txt -------------------------------------------------------------------------------- /InternVL/requirements/internvl_chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/requirements/internvl_chat.txt -------------------------------------------------------------------------------- /InternVL/requirements/segmentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/requirements/segmentation.txt -------------------------------------------------------------------------------- /InternVL/requirements/streamlit_demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/requirements/streamlit_demo.txt -------------------------------------------------------------------------------- /InternVL/segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/README.md -------------------------------------------------------------------------------- /InternVL/segmentation/configs/_base_/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/configs/_base_/datasets/drive.py -------------------------------------------------------------------------------- /InternVL/segmentation/configs/_base_/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/configs/_base_/datasets/hrf.py -------------------------------------------------------------------------------- /InternVL/segmentation/configs/_base_/datasets/isaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/configs/_base_/datasets/isaid.py -------------------------------------------------------------------------------- /InternVL/segmentation/configs/_base_/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/configs/_base_/datasets/stare.py -------------------------------------------------------------------------------- /InternVL/segmentation/configs/_base_/models/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/configs/_base_/models/cgnet.py -------------------------------------------------------------------------------- /InternVL/segmentation/configs/_base_/models/fpn_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/configs/_base_/models/fpn_r50.py -------------------------------------------------------------------------------- /InternVL/segmentation/configs/_base_/models/stdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/configs/_base_/models/stdc.py -------------------------------------------------------------------------------- /InternVL/segmentation/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/dist_test.sh -------------------------------------------------------------------------------- /InternVL/segmentation/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/dist_train.sh -------------------------------------------------------------------------------- /InternVL/segmentation/mmcv_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/mmcv_custom/__init__.py -------------------------------------------------------------------------------- /InternVL/segmentation/mmcv_custom/ddp_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/mmcv_custom/ddp_hooks.py -------------------------------------------------------------------------------- /InternVL/segmentation/mmseg_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/mmseg_custom/__init__.py -------------------------------------------------------------------------------- /InternVL/segmentation/mmseg_custom/datasets/ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/mmseg_custom/datasets/ade.py -------------------------------------------------------------------------------- /InternVL/segmentation/mmseg_custom/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/mmseg_custom/models/__init__.py -------------------------------------------------------------------------------- /InternVL/segmentation/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/release.py -------------------------------------------------------------------------------- /InternVL/segmentation/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/slurm_test.sh -------------------------------------------------------------------------------- /InternVL/segmentation/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/slurm_train.sh -------------------------------------------------------------------------------- /InternVL/segmentation/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/test.py -------------------------------------------------------------------------------- /InternVL/segmentation/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/train.py -------------------------------------------------------------------------------- /InternVL/segmentation/zero_configs/adam_fp16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/zero_configs/adam_fp16.json -------------------------------------------------------------------------------- /InternVL/segmentation/zero_configs/adam_zero1_amp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/segmentation/zero_configs/adam_zero1_amp.json -------------------------------------------------------------------------------- /InternVL/video_retrieval/test_msrvtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/InternVL/video_retrieval/test_msrvtt.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/README.md -------------------------------------------------------------------------------- /assets/Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/assets/Figure1.png -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/assets/demo.png -------------------------------------------------------------------------------- /assets/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/assets/demo2.png -------------------------------------------------------------------------------- /assets/demo_result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/assets/demo_result.gif -------------------------------------------------------------------------------- /configs/UFO-InternVL2_5-8B-multitask/multi_1344_4w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-InternVL2_5-8B-multitask/multi_1344_4w.py -------------------------------------------------------------------------------- /configs/UFO-InternVL2_5-8B-multitask/multi_448_30w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-InternVL2_5-8B-multitask/multi_448_30w.py -------------------------------------------------------------------------------- /configs/UFO-InternVL2_5-8B-multitask/multi_896_6w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-InternVL2_5-8B-multitask/multi_896_6w.py -------------------------------------------------------------------------------- /configs/UFO-InternVL2_5-8B/internvl2_5_8b_rec_ft_2w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-InternVL2_5-8B/internvl2_5_8b_rec_ft_2w.py -------------------------------------------------------------------------------- /configs/UFO-InternVL2_5-8B/internvl2_5_8b_res_ft_2w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-InternVL2_5-8B/internvl2_5_8b_res_ft_2w.py -------------------------------------------------------------------------------- /configs/UFO-LLaVA1.5-7B/llava1.5_7b_instruction_12w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-LLaVA1.5-7B/llava1.5_7b_instruction_12w.py -------------------------------------------------------------------------------- /configs/UFO-LLaVA1.5-7B/llava1.5_7b_reasonseg_ft_1w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-LLaVA1.5-7B/llava1.5_7b_reasonseg_ft_1w.py -------------------------------------------------------------------------------- /configs/UFO-LLaVA1.5-7B/llava1.5_7b_rec_ft_2w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-LLaVA1.5-7B/llava1.5_7b_rec_ft_2w.py -------------------------------------------------------------------------------- /configs/UFO-LLaVA1.5-7B/llava1.5_7b_res_ft_2w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-LLaVA1.5-7B/llava1.5_7b_res_ft_2w.py -------------------------------------------------------------------------------- /configs/UFO-ViT/multi_fivetask_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-ViT/multi_fivetask_base.py -------------------------------------------------------------------------------- /configs/UFO-ViT/multi_fivetask_huge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-ViT/multi_fivetask_huge.py -------------------------------------------------------------------------------- /configs/UFO-ViT/multi_fivetask_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-ViT/multi_fivetask_large.py -------------------------------------------------------------------------------- /configs/UFO-ViT/single_caption_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-ViT/single_caption_base.py -------------------------------------------------------------------------------- /configs/UFO-ViT/single_detection_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-ViT/single_detection_base.py -------------------------------------------------------------------------------- /configs/UFO-ViT/single_ground_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-ViT/single_ground_base.py -------------------------------------------------------------------------------- /configs/UFO-ViT/single_insseg_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-ViT/single_insseg_base.py -------------------------------------------------------------------------------- /configs/UFO-ViT/single_semseg_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/UFO-ViT/single_semseg_base.py -------------------------------------------------------------------------------- /configs/_base_/caption_default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/caption_default_runtime.py -------------------------------------------------------------------------------- /configs/_base_/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/ade20k.py -------------------------------------------------------------------------------- /configs/_base_/datasets/ade20k_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/ade20k_vis.py -------------------------------------------------------------------------------- /configs/_base_/datasets/cityscapes_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/cityscapes_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/cityscapes_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/cityscapes_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/coco_caption.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/coco_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/coco_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_instance_semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/coco_instance_semantic.py -------------------------------------------------------------------------------- /configs/_base_/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /configs/_base_/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/deepfashion.py -------------------------------------------------------------------------------- /configs/_base_/datasets/lvis_v0.5_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/lvis_v0.5_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/lvis_v1_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/lvis_v1_instance.py -------------------------------------------------------------------------------- /configs/_base_/datasets/objects365v1_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/objects365v1_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/objects365v2_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/objects365v2_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/openimages_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/openimages_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/semi_coco_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/semi_coco_detection.py -------------------------------------------------------------------------------- /configs/_base_/datasets/v3det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/v3det.py -------------------------------------------------------------------------------- /configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /configs/_base_/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/datasets/wider_face.py -------------------------------------------------------------------------------- /configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /configs/_base_/models/cascade-mask-rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/cascade-mask-rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/cascade-rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/cascade-rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/fast-rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/fast-rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/faster-rcnn_r50-caffe-c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/faster-rcnn_r50-caffe-c4.py -------------------------------------------------------------------------------- /configs/_base_/models/faster-rcnn_r50-caffe-dc5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/faster-rcnn_r50-caffe-dc5.py -------------------------------------------------------------------------------- /configs/_base_/models/faster-rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/faster-rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/mask-rcnn_r50-caffe-c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/mask-rcnn_r50-caffe-c4.py -------------------------------------------------------------------------------- /configs/_base_/models/mask-rcnn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/mask-rcnn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/retinanet_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/retinanet_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/rpn_r50-caffe-c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/rpn_r50-caffe-c4.py -------------------------------------------------------------------------------- /configs/_base_/models/rpn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/rpn_r50_fpn.py -------------------------------------------------------------------------------- /configs/_base_/models/ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/models/ssd300.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/schedules/schedule_20e.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /configs/_base_/seg_default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/configs/_base_/seg_default_runtime.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/demo.py -------------------------------------------------------------------------------- /demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/demo/demo.jpg -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/UFO_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/UFO_commands.md -------------------------------------------------------------------------------- /docs/en/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/_static/css/readthedocs.css -------------------------------------------------------------------------------- /docs/en/_static/image/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/_static/image/mmdet-logo.png -------------------------------------------------------------------------------- /docs/en/advanced_guides/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/conventions.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/customize_dataset.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_losses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/customize_losses.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/customize_models.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/customize_runtime.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/customize_transforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/customize_transforms.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/data_flow.md: -------------------------------------------------------------------------------- 1 | # Data Flow 2 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/datasets.md: -------------------------------------------------------------------------------- 1 | # Datasets 2 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/engine.md: -------------------------------------------------------------------------------- 1 | # Engine 2 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/evaluation.md: -------------------------------------------------------------------------------- 1 | # Evaluation 2 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/how_to.md -------------------------------------------------------------------------------- /docs/en/advanced_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/index.rst -------------------------------------------------------------------------------- /docs/en/advanced_guides/models.md: -------------------------------------------------------------------------------- 1 | # Models 2 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/structures.md: -------------------------------------------------------------------------------- 1 | # Structures 2 | -------------------------------------------------------------------------------- /docs/en/advanced_guides/transforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/advanced_guides/transforms.md -------------------------------------------------------------------------------- /docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/api.rst -------------------------------------------------------------------------------- /docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/conf.py -------------------------------------------------------------------------------- /docs/en/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/customize_dataset.md -------------------------------------------------------------------------------- /docs/en/dataset_zoo.md: -------------------------------------------------------------------------------- 1 | # Dataset Zoo 2 | -------------------------------------------------------------------------------- /docs/en/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/get_started.md -------------------------------------------------------------------------------- /docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/index.rst -------------------------------------------------------------------------------- /docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/make.bat -------------------------------------------------------------------------------- /docs/en/migration.md: -------------------------------------------------------------------------------- 1 | # Migration 2 | -------------------------------------------------------------------------------- /docs/en/migration/api_and_registry_migration.md: -------------------------------------------------------------------------------- 1 | # Migrate API and Registry from MMDetection 2.x to 3.x 2 | -------------------------------------------------------------------------------- /docs/en/migration/config_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/migration/config_migration.md -------------------------------------------------------------------------------- /docs/en/migration/dataset_migration.md: -------------------------------------------------------------------------------- 1 | # Migrate dataset from MMDetection 2.x to 3.x 2 | -------------------------------------------------------------------------------- /docs/en/migration/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/migration/migration.md -------------------------------------------------------------------------------- /docs/en/migration/migration_faq.md: -------------------------------------------------------------------------------- 1 | # Migration FAQ 2 | -------------------------------------------------------------------------------- /docs/en/migration/model_migration.md: -------------------------------------------------------------------------------- 1 | # Migrate models from MMDetection 2.x to 3.x 2 | -------------------------------------------------------------------------------- /docs/en/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/model_zoo.md -------------------------------------------------------------------------------- /docs/en/notes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/notes/changelog.md -------------------------------------------------------------------------------- /docs/en/notes/changelog_v2.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/notes/changelog_v2.x.md -------------------------------------------------------------------------------- /docs/en/notes/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/notes/compatibility.md -------------------------------------------------------------------------------- /docs/en/notes/contribution_guide.md: -------------------------------------------------------------------------------- 1 | # Contribution 2 | -------------------------------------------------------------------------------- /docs/en/notes/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/notes/faq.md -------------------------------------------------------------------------------- /docs/en/notes/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/notes/projects.md -------------------------------------------------------------------------------- /docs/en/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/overview.md -------------------------------------------------------------------------------- /docs/en/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/stat.py -------------------------------------------------------------------------------- /docs/en/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/switch_language.md -------------------------------------------------------------------------------- /docs/en/user_guides/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/config.md -------------------------------------------------------------------------------- /docs/en/user_guides/dataset_prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/dataset_prepare.md -------------------------------------------------------------------------------- /docs/en/user_guides/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/deploy.md -------------------------------------------------------------------------------- /docs/en/user_guides/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/finetune.md -------------------------------------------------------------------------------- /docs/en/user_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/index.rst -------------------------------------------------------------------------------- /docs/en/user_guides/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/inference.md -------------------------------------------------------------------------------- /docs/en/user_guides/init_cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/init_cfg.md -------------------------------------------------------------------------------- /docs/en/user_guides/label_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/label_studio.md -------------------------------------------------------------------------------- /docs/en/user_guides/new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/new_model.md -------------------------------------------------------------------------------- /docs/en/user_guides/robustness_benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/robustness_benchmarking.md -------------------------------------------------------------------------------- /docs/en/user_guides/semi_det.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/semi_det.md -------------------------------------------------------------------------------- /docs/en/user_guides/single_stage_as_rpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/single_stage_as_rpn.md -------------------------------------------------------------------------------- /docs/en/user_guides/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/test.md -------------------------------------------------------------------------------- /docs/en/user_guides/test_results_submission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/test_results_submission.md -------------------------------------------------------------------------------- /docs/en/user_guides/train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/train.md -------------------------------------------------------------------------------- /docs/en/user_guides/useful_hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/useful_hooks.md -------------------------------------------------------------------------------- /docs/en/user_guides/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/useful_tools.md -------------------------------------------------------------------------------- /docs/en/user_guides/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/en/user_guides/visualization.md -------------------------------------------------------------------------------- /docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /docs/zh_cn/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/_static/css/readthedocs.css -------------------------------------------------------------------------------- /docs/zh_cn/_static/image/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/_static/image/mmdet-logo.png -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/conventions.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/customize_dataset.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_losses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/customize_losses.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/customize_models.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/customize_runtime.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/customize_transforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/customize_transforms.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/data_flow.md: -------------------------------------------------------------------------------- 1 | # 数据流(待更新) 2 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/datasets.md: -------------------------------------------------------------------------------- 1 | # 数据集(待更新) 2 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/engine.md: -------------------------------------------------------------------------------- 1 | # 执行引擎(待更新) 2 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/evaluation.md: -------------------------------------------------------------------------------- 1 | # 精度评测(待更新) 2 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/how_to.md -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/models.md: -------------------------------------------------------------------------------- 1 | # 模型(待更新) 2 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/structures.md: -------------------------------------------------------------------------------- 1 | # 数据结构(待更新) 2 | -------------------------------------------------------------------------------- /docs/zh_cn/advanced_guides/transforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/advanced_guides/transforms.md -------------------------------------------------------------------------------- /docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /docs/zh_cn/article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/article.md -------------------------------------------------------------------------------- /docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /docs/zh_cn/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/get_started.md -------------------------------------------------------------------------------- /docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /docs/zh_cn/migration/api_and_registry_migration.md: -------------------------------------------------------------------------------- 1 | # 将 API 和注册器从 MMDetection 2.x 迁移至 3.x 2 | -------------------------------------------------------------------------------- /docs/zh_cn/migration/config_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/migration/config_migration.md -------------------------------------------------------------------------------- /docs/zh_cn/migration/dataset_migration.md: -------------------------------------------------------------------------------- 1 | # 将数据集从 MMDetection 2.x 迁移至 3.x 2 | -------------------------------------------------------------------------------- /docs/zh_cn/migration/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/migration/migration.md -------------------------------------------------------------------------------- /docs/zh_cn/migration/migration_faq.md: -------------------------------------------------------------------------------- 1 | # 迁移 FAQ 2 | -------------------------------------------------------------------------------- /docs/zh_cn/migration/model_migration.md: -------------------------------------------------------------------------------- 1 | # 将模型从 MMDetection 2.x 迁移至 3.x 2 | -------------------------------------------------------------------------------- /docs/zh_cn/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/model_zoo.md -------------------------------------------------------------------------------- /docs/zh_cn/notes/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/notes/compatibility.md -------------------------------------------------------------------------------- /docs/zh_cn/notes/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/notes/faq.md -------------------------------------------------------------------------------- /docs/zh_cn/notes/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/notes/projects.md -------------------------------------------------------------------------------- /docs/zh_cn/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/overview.md -------------------------------------------------------------------------------- /docs/zh_cn/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/stat.py -------------------------------------------------------------------------------- /docs/zh_cn/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/switch_language.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/config.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/dataset_prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/dataset_prepare.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/deploy.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/finetune.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/inference.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/init_cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/init_cfg.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/label_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/label_studio.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/new_model.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/robustness_benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/robustness_benchmarking.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/semi_det.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/semi_det.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/single_stage_as_rpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/single_stage_as_rpn.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/test.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/test_results_submission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/test_results_submission.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/train.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/useful_hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/useful_hooks.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/useful_tools.md -------------------------------------------------------------------------------- /docs/zh_cn/user_guides/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/docs/zh_cn/user_guides/visualization.md -------------------------------------------------------------------------------- /mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/det_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/apis/det_inferencer.py -------------------------------------------------------------------------------- /mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdet/apis/mmseg_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/apis/mmseg_inferencer.py -------------------------------------------------------------------------------- /mmdet/apis/visualizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/apis/visualizer/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/visualizer/image_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/apis/visualizer/image_vis.py -------------------------------------------------------------------------------- /mmdet/apis/visualizer/open3d_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/apis/visualizer/open3d_vis.py -------------------------------------------------------------------------------- /mmdet/apis/visualizer/show_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/apis/visualizer/show_result.py -------------------------------------------------------------------------------- /mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/ade.py -------------------------------------------------------------------------------- /mmdet/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/ade20k.py -------------------------------------------------------------------------------- /mmdet/datasets/api_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/api_wrappers/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/api_wrappers/coco_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/api_wrappers/coco_api.py -------------------------------------------------------------------------------- /mmdet/datasets/api_wrappers/cocoeval_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/api_wrappers/cocoeval_mp.py -------------------------------------------------------------------------------- /mmdet/datasets/base_det_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/base_det_dataset.py -------------------------------------------------------------------------------- /mmdet/datasets/basesegdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/basesegdataset.py -------------------------------------------------------------------------------- /mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdet/datasets/coco_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/coco_caption.py -------------------------------------------------------------------------------- /mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /mmdet/datasets/coco_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/coco_stuff.py -------------------------------------------------------------------------------- /mmdet/datasets/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/conversation.py -------------------------------------------------------------------------------- /mmdet/datasets/crowdhuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/crowdhuman.py -------------------------------------------------------------------------------- /mmdet/datasets/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/data_processing.py -------------------------------------------------------------------------------- /mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdet/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/drive.py -------------------------------------------------------------------------------- /mmdet/datasets/flickr30k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/flickr30k.py -------------------------------------------------------------------------------- /mmdet/datasets/llava_665k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/llava_665k.py -------------------------------------------------------------------------------- /mmdet/datasets/llava_onevision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/llava_onevision.py -------------------------------------------------------------------------------- /mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /mmdet/datasets/mapillary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/mapillary.py -------------------------------------------------------------------------------- /mmdet/datasets/nuimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/nuimage.py -------------------------------------------------------------------------------- /mmdet/datasets/nuimage_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/nuimage_seg.py -------------------------------------------------------------------------------- /mmdet/datasets/objects365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/objects365.py -------------------------------------------------------------------------------- /mmdet/datasets/openimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/openimages.py -------------------------------------------------------------------------------- /mmdet/datasets/openimages_inseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/openimages_inseg.py -------------------------------------------------------------------------------- /mmdet/datasets/paco_lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/paco_lvis.py -------------------------------------------------------------------------------- /mmdet/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/pascal_context.py -------------------------------------------------------------------------------- /mmdet/datasets/pascal_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/pascal_part.py -------------------------------------------------------------------------------- /mmdet/datasets/reason_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/reason_seg.py -------------------------------------------------------------------------------- /mmdet/datasets/refcoco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/refcoco.py -------------------------------------------------------------------------------- /mmdet/datasets/refer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/refer.py -------------------------------------------------------------------------------- /mmdet/datasets/refer_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/refer_seg.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/batch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/samplers/batch_sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/class_aware_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/samplers/class_aware_sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/multi_data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/samplers/multi_data_sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/multi_source_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/samplers/multi_source_sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/augment_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/augment_wrappers.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/colorspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/colorspace.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/formatting.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/geometric.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/instaboost.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/loading.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/seg_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/seg_loading.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/transforms.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/transforms/wrappers.py -------------------------------------------------------------------------------- /mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdet/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/__init__.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/__init__.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/checkloss_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/checkloss_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/mean_teacher_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/mean_teacher_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/memory_profiler_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/memory_profiler_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/num_class_check_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/num_class_check_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/pipeline_switch_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/pipeline_switch_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/seg_visualization_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/seg_visualization_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/set_epoch_info_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/set_epoch_info_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/sync_norm_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/sync_norm_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/utils.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/visualization_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/visualization_hook.py -------------------------------------------------------------------------------- /mmdet/engine/hooks/yolox_mode_switch_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/hooks/yolox_mode_switch_hook.py -------------------------------------------------------------------------------- /mmdet/engine/optimizers/GaloreAdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/optimizers/GaloreAdam.py -------------------------------------------------------------------------------- /mmdet/engine/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/optimizers/__init__.py -------------------------------------------------------------------------------- /mmdet/engine/optimizers/galore_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/optimizers/galore_constructor.py -------------------------------------------------------------------------------- /mmdet/engine/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/runner/__init__.py -------------------------------------------------------------------------------- /mmdet/engine/runner/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/runner/loops.py -------------------------------------------------------------------------------- /mmdet/engine/schedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/schedulers/__init__.py -------------------------------------------------------------------------------- /mmdet/engine/schedulers/quadratic_warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/engine/schedulers/quadratic_warmup.py -------------------------------------------------------------------------------- /mmdet/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdet/evaluation/evaluator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/evaluator/__init__.py -------------------------------------------------------------------------------- /mmdet/evaluation/evaluator/multi_datasets_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/evaluator/multi_datasets_evaluator.py -------------------------------------------------------------------------------- /mmdet/evaluation/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/functional/__init__.py -------------------------------------------------------------------------------- /mmdet/evaluation/functional/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/functional/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdet/evaluation/functional/cityscapes_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/functional/cityscapes_utils.py -------------------------------------------------------------------------------- /mmdet/evaluation/functional/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/functional/class_names.py -------------------------------------------------------------------------------- /mmdet/evaluation/functional/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/functional/mean_ap.py -------------------------------------------------------------------------------- /mmdet/evaluation/functional/panoptic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/functional/panoptic_utils.py -------------------------------------------------------------------------------- /mmdet/evaluation/functional/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/functional/recall.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/__init__.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/caption.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/cityscapes_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/cityscapes_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/coco_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/coco_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/coco_occluded_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/coco_occluded_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/coco_panoptic_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/coco_panoptic_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/crowdhuman_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/crowdhuman_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/dump_det_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/dump_det_results.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/dump_proposals_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/dump_proposals_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/iou_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/iou_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/iou_metric_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/iou_metric_binary.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/iou_metric_binary_best.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/iou_metric_binary_best.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/lvis_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/lvis_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/nocaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/nocaps.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/openimages_inseg_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/openimages_inseg_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/openimages_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/openimages_metric.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/visual_grounding_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/visual_grounding_eval.py -------------------------------------------------------------------------------- /mmdet/evaluation/metrics/voc_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/evaluation/metrics/voc_metric.py -------------------------------------------------------------------------------- /mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdet/models/backbones/base_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/base_backbone.py -------------------------------------------------------------------------------- /mmdet/models/backbones/csp_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/csp_darknet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/cspnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/cspnext.py -------------------------------------------------------------------------------- /mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/detectors_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/detectors_resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/detectors_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/detectors_resnext.py -------------------------------------------------------------------------------- /mmdet/models/backbones/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/efficientnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/mmseg_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/mmseg_resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /mmdet/models/backbones/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/pvt.py -------------------------------------------------------------------------------- /mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /mmdet/models/backbones/trident_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/trident_resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/vit_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/vit_git.py -------------------------------------------------------------------------------- /mmdet/models/backbones/vit_ufo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/backbones/vit_ufo.py -------------------------------------------------------------------------------- /mmdet/models/data_preprocessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/data_preprocessors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/data_preprocessors/data_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/data_preprocessors/data_preprocessor.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/anchor_free_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/anchor_free_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/anchor_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/atss_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/autoassign_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/autoassign_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/base_dense_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/base_dense_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/base_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/base_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/beam_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/beam_search.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/boxinst_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/boxinst_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/cascade_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/cascade_rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/centernet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/centernet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/centernet_update_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/centernet_update_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/centripetal_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/centripetal_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/condinst_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/condinst_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/conditional_detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/conditional_detr_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/corner_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/dab_detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/dab_detr_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/dataset_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/dataset_labels.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ddod_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ddod_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/deformable_detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/deformable_detr_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/dense_test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/dense_test_mixins.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/detr_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/dino_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/dino_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/dino_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/dino_layers.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/embedding_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/embedding_rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/fcos_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/fovea_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/free_anchor_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/free_anchor_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/fsaf_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ga_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ga_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/git_caption_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/git_caption_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/git_det_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/git_det_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/git_grounding_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/git_grounding_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/git_insseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/git_insseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/git_semseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/git_semseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/guided_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/guided_anchor_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/internvl_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/internvl_constants.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/internvl_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/internvl_conversation.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/lad_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/lad_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ld_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/llava_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/llava_constants.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/llava_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/llava_conversation.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/llava_mm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/llava_mm_utils.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/mask2former_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/mask2former_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/mask2former_semhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/mask2former_semhead.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/mask_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/mask_postprocess.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/maskformer_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/maskformer_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/nasfcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/nasfcos_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/pisa_retinanet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/pisa_retinanet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/pisa_ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/pisa_ssd_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/reppoints_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/retina_sepbn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/retina_sepbn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/rtmdet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/rtmdet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/rtmdet_ins_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/rtmdet_ins_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/sabl_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/sabl_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/solo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/solo_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/solov2_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/solov2_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/tood_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/tood_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_internvl_caption_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_internvl_caption_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_internvl_det_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_internvl_det_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_internvl_ground_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_internvl_ground_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_internvl_insseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_internvl_insseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_internvl_referseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_internvl_referseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_internvl_semseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_internvl_semseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_internvl_vqa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_internvl_vqa_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_llava_det_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_llava_det_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_llava_ground_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_llava_ground_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_llava_insseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_llava_insseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_llava_reasonseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_llava_reasonseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_llava_referseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_llava_referseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_llava_semseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_llava_semseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_llava_vqa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_llava_vqa_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_vit_caption_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_vit_caption_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_vit_det_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_vit_det_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_vit_ground_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_vit_ground_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_vit_insseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_vit_insseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ufo_vit_semseg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/ufo_vit_semseg_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/vfnet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/yolact_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/yolo_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolof_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/yolof_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/dense_heads/yolox_head.py -------------------------------------------------------------------------------- /mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /mmdet/models/detectors/autoassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/autoassign.py -------------------------------------------------------------------------------- /mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdet/models/detectors/base_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/base_3d.py -------------------------------------------------------------------------------- /mmdet/models/detectors/base_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/base_detr.py -------------------------------------------------------------------------------- /mmdet/models/detectors/boxinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/boxinst.py -------------------------------------------------------------------------------- /mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/centernet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/condinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/condinst.py -------------------------------------------------------------------------------- /mmdet/models/detectors/conditional_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/conditional_detr.py -------------------------------------------------------------------------------- /mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/crowddet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/crowddet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/d2_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/d2_wrapper.py -------------------------------------------------------------------------------- /mmdet/models/detectors/dab_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/dab_detr.py -------------------------------------------------------------------------------- /mmdet/models/detectors/ddod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/ddod.py -------------------------------------------------------------------------------- /mmdet/models/detectors/deformable_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/deformable_detr.py -------------------------------------------------------------------------------- /mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /mmdet/models/detectors/dino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/dino.py -------------------------------------------------------------------------------- /mmdet/models/detectors/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/encoder_decoder.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /mmdet/models/detectors/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/git.py -------------------------------------------------------------------------------- /mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdet/models/detectors/imvotenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/imvotenet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/internvl_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/internvl_conversation.py -------------------------------------------------------------------------------- /mmdet/models/detectors/internvl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/internvl_utils.py -------------------------------------------------------------------------------- /mmdet/models/detectors/kd_one_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/kd_one_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/lad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/lad.py -------------------------------------------------------------------------------- /mmdet/models/detectors/llava/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/llava/__init__.py -------------------------------------------------------------------------------- /mmdet/models/detectors/llava/llava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/llava/llava.py -------------------------------------------------------------------------------- /mmdet/models/detectors/llava/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/llava/modules.py -------------------------------------------------------------------------------- /mmdet/models/detectors/llava_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/llava_utils.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask2former.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/mask2former.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask_scoring_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/mask_scoring_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/maskformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/maskformer.py -------------------------------------------------------------------------------- /mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /mmdet/models/detectors/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/panoptic_fpn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/panoptic_two_stage_segmentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/panoptic_two_stage_segmentor.py -------------------------------------------------------------------------------- /mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /mmdet/models/detectors/queryinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/queryinst.py -------------------------------------------------------------------------------- /mmdet/models/detectors/reppoints_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/reppoints_detector.py -------------------------------------------------------------------------------- /mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/rtmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/rtmdet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/semi_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/semi_base.py -------------------------------------------------------------------------------- /mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/single_stage_instance_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/single_stage_instance_seg.py -------------------------------------------------------------------------------- /mmdet/models/detectors/soft_teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/soft_teacher.py -------------------------------------------------------------------------------- /mmdet/models/detectors/solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/solo.py -------------------------------------------------------------------------------- /mmdet/models/detectors/solov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/solov2.py -------------------------------------------------------------------------------- /mmdet/models/detectors/sparse_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/sparse_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/tood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/tood.py -------------------------------------------------------------------------------- /mmdet/models/detectors/trident_faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/trident_faster_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/ufo_internvl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/ufo_internvl.py -------------------------------------------------------------------------------- /mmdet/models/detectors/ufo_internvl_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/ufo_internvl_full.py -------------------------------------------------------------------------------- /mmdet/models/detectors/ufo_llava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/ufo_llava.py -------------------------------------------------------------------------------- /mmdet/models/detectors/ufo_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/ufo_vit.py -------------------------------------------------------------------------------- /mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/detectors/yolox.py -------------------------------------------------------------------------------- /mmdet/models/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/__init__.py -------------------------------------------------------------------------------- /mmdet/models/layers/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/activations.py -------------------------------------------------------------------------------- /mmdet/models/layers/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/bbox_nms.py -------------------------------------------------------------------------------- /mmdet/models/layers/brick_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/brick_wrappers.py -------------------------------------------------------------------------------- /mmdet/models/layers/conv_upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/conv_upsample.py -------------------------------------------------------------------------------- /mmdet/models/layers/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/csp_layer.py -------------------------------------------------------------------------------- /mmdet/models/layers/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/dropblock.py -------------------------------------------------------------------------------- /mmdet/models/layers/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/ema.py -------------------------------------------------------------------------------- /mmdet/models/layers/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/inverted_residual.py -------------------------------------------------------------------------------- /mmdet/models/layers/matrix_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/matrix_nms.py -------------------------------------------------------------------------------- /mmdet/models/layers/msdeformattn_pixel_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/msdeformattn_pixel_decoder.py -------------------------------------------------------------------------------- /mmdet/models/layers/normed_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/normed_predictor.py -------------------------------------------------------------------------------- /mmdet/models/layers/pixel_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/pixel_decoder.py -------------------------------------------------------------------------------- /mmdet/models/layers/positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/positional_encoding.py -------------------------------------------------------------------------------- /mmdet/models/layers/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/res_layer.py -------------------------------------------------------------------------------- /mmdet/models/layers/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/se_layer.py -------------------------------------------------------------------------------- /mmdet/models/layers/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/transformer/__init__.py -------------------------------------------------------------------------------- /mmdet/models/layers/transformer/dab_detr_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/transformer/dab_detr_layers.py -------------------------------------------------------------------------------- /mmdet/models/layers/transformer/detr_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/transformer/detr_layers.py -------------------------------------------------------------------------------- /mmdet/models/layers/transformer/dino_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/transformer/dino_layers.py -------------------------------------------------------------------------------- /mmdet/models/layers/transformer/mask2former_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/transformer/mask2former_layers.py -------------------------------------------------------------------------------- /mmdet/models/layers/transformer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/layers/transformer/utils.py -------------------------------------------------------------------------------- /mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/dice_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/gaussian_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/gaussian_focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdet/models/losses/varifocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/losses/varifocal_loss.py -------------------------------------------------------------------------------- /mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /mmdet/models/necks/cspnext_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/cspnext_pafpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/ct_resnet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/ct_resnet_neck.py -------------------------------------------------------------------------------- /mmdet/models/necks/dilated_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/dilated_encoder.py -------------------------------------------------------------------------------- /mmdet/models/necks/dyhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/dyhead.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /mmdet/models/necks/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/ssh.py -------------------------------------------------------------------------------- /mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /mmdet/models/necks/yolox_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/necks/yolox_pafpn.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/base_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/base_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/bbox_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/bbox_heads/bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/convfc_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/bbox_heads/convfc_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/dii_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/bbox_heads/dii_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/double_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/bbox_heads/double_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/sabl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/bbox_heads/sabl_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/scnet_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/bbox_heads/scnet_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/cascade_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/cascade_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/double_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/double_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/dynamic_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/dynamic_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/grid_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/grid_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/htc_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/htc_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/coarse_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/coarse_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/dynamic_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/dynamic_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/fcn_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/fcn_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/grid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/grid_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/htc_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/htc_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/mask_point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/mask_point_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/maskiou_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/maskiou_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/scnet_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_heads/scnet_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_scoring_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/mask_scoring_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/multi_instance_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/multi_instance_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/pisa_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/pisa_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/point_rend_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/point_rend_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/roi_extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/roi_extractors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/scnet_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/scnet_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/shared_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/shared_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/shared_heads/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/shared_heads/res_layer.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/sparse_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/sparse_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/standard_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/standard_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/test_mixins.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/trident_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/roi_heads/trident_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/seg_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/seg_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/seg_heads/base_semantic_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/seg_heads/base_semantic_head.py -------------------------------------------------------------------------------- /mmdet/models/seg_heads/panoptic_fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/seg_heads/panoptic_fpn_head.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/__init__.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/assigners/__init__.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/assigners/assign_result.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/assigners/atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/assigners/atss_assigner.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/assigners/grid_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/assigners/grid_assigner.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/assigners/match_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/assigners/match_cost.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/assigners/point_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/assigners/point_assigner.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/assigners/region_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/assigners/region_assigner.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/builder.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/coders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/coders/__init__.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/coders/base_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/coders/base_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/coders/pseudo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/coders/pseudo_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/coders/tblr_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/coders/tblr_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/coders/yolo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/coders/yolo_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/prior_generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/prior_generators/__init__.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/prior_generators/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/prior_generators/utils.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/samplers/base_sampler.py -------------------------------------------------------------------------------- /mmdet/models/task_modules/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/task_modules/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /mmdet/models/test_time_augs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/test_time_augs/__init__.py -------------------------------------------------------------------------------- /mmdet/models/test_time_augs/det_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/test_time_augs/det_tta.py -------------------------------------------------------------------------------- /mmdet/models/test_time_augs/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/test_time_augs/merge_augs.py -------------------------------------------------------------------------------- /mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/models/utils/clip_generator_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/clip_generator_helper.py -------------------------------------------------------------------------------- /mmdet/models/utils/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/embed.py -------------------------------------------------------------------------------- /mmdet/models/utils/gaussian_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/gaussian_target.py -------------------------------------------------------------------------------- /mmdet/models/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/helpers.py -------------------------------------------------------------------------------- /mmdet/models/utils/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/huggingface.py -------------------------------------------------------------------------------- /mmdet/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/make_divisible.py -------------------------------------------------------------------------------- /mmdet/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/misc.py -------------------------------------------------------------------------------- /mmdet/models/utils/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/norm.py -------------------------------------------------------------------------------- /mmdet/models/utils/panoptic_gt_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/panoptic_gt_processing.py -------------------------------------------------------------------------------- /mmdet/models/utils/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/point_sample.py -------------------------------------------------------------------------------- /mmdet/models/utils/seg_warppers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/seg_warppers.py -------------------------------------------------------------------------------- /mmdet/models/utils/text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/text_embedding.py -------------------------------------------------------------------------------- /mmdet/models/utils/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/models/utils/tokenizer.py -------------------------------------------------------------------------------- /mmdet/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/registry.py -------------------------------------------------------------------------------- /mmdet/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/__init__.py -------------------------------------------------------------------------------- /mmdet/structures/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/bbox/__init__.py -------------------------------------------------------------------------------- /mmdet/structures/bbox/base_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/bbox/base_boxes.py -------------------------------------------------------------------------------- /mmdet/structures/bbox/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/bbox/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdet/structures/bbox/box_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/bbox/box_type.py -------------------------------------------------------------------------------- /mmdet/structures/bbox/horizontal_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/bbox/horizontal_boxes.py -------------------------------------------------------------------------------- /mmdet/structures/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/bbox/transforms.py -------------------------------------------------------------------------------- /mmdet/structures/data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/data_sample.py -------------------------------------------------------------------------------- /mmdet/structures/det_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/det_data_sample.py -------------------------------------------------------------------------------- /mmdet/structures/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/mask/__init__.py -------------------------------------------------------------------------------- /mmdet/structures/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/mask/mask_target.py -------------------------------------------------------------------------------- /mmdet/structures/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/mask/structures.py -------------------------------------------------------------------------------- /mmdet/structures/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/mask/utils.py -------------------------------------------------------------------------------- /mmdet/structures/seg_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/seg_data_sample.py -------------------------------------------------------------------------------- /mmdet/structures/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/structures/utils.py -------------------------------------------------------------------------------- /mmdet/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/testing/__init__.py -------------------------------------------------------------------------------- /mmdet/testing/_fast_stop_training_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/testing/_fast_stop_training_hook.py -------------------------------------------------------------------------------- /mmdet/testing/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/testing/_utils.py -------------------------------------------------------------------------------- /mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/utils/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/benchmark.py -------------------------------------------------------------------------------- /mmdet/utils/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/class_names.py -------------------------------------------------------------------------------- /mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /mmdet/utils/compat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/compat_config.py -------------------------------------------------------------------------------- /mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /mmdet/utils/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/dependency.py -------------------------------------------------------------------------------- /mmdet/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdet/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/io.py -------------------------------------------------------------------------------- /mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/logger.py -------------------------------------------------------------------------------- /mmdet/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/memory.py -------------------------------------------------------------------------------- /mmdet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/misc.py -------------------------------------------------------------------------------- /mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /mmdet/utils/replace_cfg_vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/replace_cfg_vals.py -------------------------------------------------------------------------------- /mmdet/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/setup_env.py -------------------------------------------------------------------------------- /mmdet/utils/split_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/split_batch.py -------------------------------------------------------------------------------- /mmdet/utils/typing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/typing_utils.py -------------------------------------------------------------------------------- /mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/version.py -------------------------------------------------------------------------------- /mmdet/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/visualization/__init__.py -------------------------------------------------------------------------------- /mmdet/visualization/local_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/visualization/local_visualizer.py -------------------------------------------------------------------------------- /mmdet/visualization/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/visualization/palette.py -------------------------------------------------------------------------------- /mmdet/visualization/seg_local_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/visualization/seg_local_visualizer.py -------------------------------------------------------------------------------- /mmdet/visualization/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/visualization/utils.py -------------------------------------------------------------------------------- /mmdet/visualization/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/mmdet/visualization/visualizer.py -------------------------------------------------------------------------------- /modeling_internvl_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/modeling_internvl_chat.py -------------------------------------------------------------------------------- /requirements/albu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/requirements/albu.txt -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv>=2.0.0rc4,<2.1.0 2 | mmengine>=0.7.1,<1.0.0 3 | -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/requirements/optional.txt -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/setup.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/analyze_results.py -------------------------------------------------------------------------------- /tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /tools/analysis_tools/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/browse_dataset.py -------------------------------------------------------------------------------- /tools/analysis_tools/browse_dataset_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/browse_dataset_seg.py -------------------------------------------------------------------------------- /tools/analysis_tools/coco_error_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/coco_error_analysis.py -------------------------------------------------------------------------------- /tools/analysis_tools/confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/confusion_matrix.py -------------------------------------------------------------------------------- /tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /tools/analysis_tools/optimize_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/optimize_anchors.py -------------------------------------------------------------------------------- /tools/analysis_tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/robustness_eval.py -------------------------------------------------------------------------------- /tools/analysis_tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/analysis_tools/test_robustness.py -------------------------------------------------------------------------------- /tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /tools/dataset_converters/cityscapes_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/cityscapes_seg.py -------------------------------------------------------------------------------- /tools/dataset_converters/coco_stuff164k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/coco_stuff164k.py -------------------------------------------------------------------------------- /tools/dataset_converters/goldg2odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/goldg2odvg.py -------------------------------------------------------------------------------- /tools/dataset_converters/grit2odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/grit2odvg.py -------------------------------------------------------------------------------- /tools/dataset_converters/images2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/images2coco.py -------------------------------------------------------------------------------- /tools/dataset_converters/isaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/isaid.py -------------------------------------------------------------------------------- /tools/dataset_converters/nuimage_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/nuimage_converter.py -------------------------------------------------------------------------------- /tools/dataset_converters/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_converters/pascal_voc.py -------------------------------------------------------------------------------- /tools/dataset_preprocess/dataset_prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_preprocess/dataset_prepare.md -------------------------------------------------------------------------------- /tools/dataset_preprocess/download_open_inseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_preprocess/download_open_inseg.py -------------------------------------------------------------------------------- /tools/dataset_preprocess/kitti2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_preprocess/kitti2coco.py -------------------------------------------------------------------------------- /tools/dataset_preprocess/link_nuimage_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_preprocess/link_nuimage_seg.py -------------------------------------------------------------------------------- /tools/dataset_preprocess/save_oim_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_preprocess/save_oim_dict.py -------------------------------------------------------------------------------- /tools/dataset_preprocess/sort_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_preprocess/sort_instances.py -------------------------------------------------------------------------------- /tools/dataset_preprocess/sort_instances_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dataset_preprocess/sort_instances_v2.py -------------------------------------------------------------------------------- /tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /tools/deployment/test_torchserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/deployment/test_torchserver.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/dist_train_multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dist_train_multi.sh -------------------------------------------------------------------------------- /tools/dist_train_multi_8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/dist_train_multi_8.sh -------------------------------------------------------------------------------- /tools/misc/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/download_dataset.py -------------------------------------------------------------------------------- /tools/misc/download_dataset_part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/download_dataset_part2.py -------------------------------------------------------------------------------- /tools/misc/download_dataset_part3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/download_dataset_part3.py -------------------------------------------------------------------------------- /tools/misc/download_dataset_part4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/download_dataset_part4.py -------------------------------------------------------------------------------- /tools/misc/gen_coco_panoptic_test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/gen_coco_panoptic_test_info.py -------------------------------------------------------------------------------- /tools/misc/get_crowdhuman_id_hw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/get_crowdhuman_id_hw.py -------------------------------------------------------------------------------- /tools/misc/get_image_metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/get_image_metas.py -------------------------------------------------------------------------------- /tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/print_config.py -------------------------------------------------------------------------------- /tools/misc/split_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/misc/split_coco.py -------------------------------------------------------------------------------- /tools/model_converters/detectron2_to_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/model_converters/detectron2_to_mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/model_converters/detectron2pytorch.py -------------------------------------------------------------------------------- /tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /tools/model_converters/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/model_converters/regnet2mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/selfsup2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/model_converters/selfsup2mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/upgrade_model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/model_converters/upgrade_model_version.py -------------------------------------------------------------------------------- /tools/model_converters/upgrade_ssd_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/model_converters/upgrade_ssd_version.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnnth/UFO/HEAD/tools/train.py --------------------------------------------------------------------------------