├── LICENSE ├── README.md ├── assets ├── scan2cap_benchmark_results.png └── scanrefer_benchmark_results.png ├── dataset ├── __init__.py ├── base_dataset.py ├── dataloader.py ├── dataset_train.py └── dataset_val.py ├── models ├── __init__.py ├── chat3d.py ├── configuration_llama.py ├── helpers.py ├── load_llama.py ├── modeling_llama.py ├── moe │ ├── __init__.py │ ├── layer.py │ └── moe_lora.py ├── position_embedding.py └── transformer_vanilla │ ├── __init__.py │ ├── mhsa.py │ ├── self_attention.py │ └── transformer_block.py ├── others ├── analyze_grounding_results.py ├── calc_scanrefer_grounding_acc.py ├── eval_offline.py ├── extract_target_noun.py ├── gpt_generate.py ├── ground_visualize.py ├── llama_tmp.py ├── modify.py ├── prepare_anno_stage1.py ├── prepare_captions_noun.py ├── prepare_describe.py ├── prepare_eval_json.py ├── prepare_identifier_rich.py ├── prepare_multi3dref.py ├── prepare_obj_align_data.py ├── prepare_obj_caption.py ├── prepare_ref_captions.py ├── prepare_referit_anno_stage1.py ├── prepare_scanqa.py ├── prepare_scanrefer_grounding_train.py ├── prepare_scene_align_data.py ├── prepare_scene_level_dataset.py ├── prepare_sqa3d.py ├── prepare_train_stage3.py ├── process_annos.py ├── process_preds.py ├── process_scan2cap_test_results.py ├── process_scanqa_test_results.py ├── process_scanrefer_test_results.py ├── process_vil3dref_multichoice.py ├── process_vil3dref_results.py ├── run_chat.sh ├── run_eval.sh ├── run_generate.sh ├── tmp.py ├── tmp2.py ├── visualize.py └── viz.py ├── preprocess ├── README.md ├── prepare_mask3d_data.py ├── prepare_mask3d_img_feat.py ├── prepare_multi3dref_annos.py ├── prepare_multi3dref_location_annos.py ├── prepare_nr3d_annos.py ├── prepare_nr3dcaption_annos.py ├── prepare_objalign_annos.py ├── prepare_scan2cap_annos.py ├── prepare_scan2cap_location_annos.py ├── prepare_scannet_attributes.py ├── prepare_scannet_attributes_clasp.py ├── prepare_scannet_caption_annos.py ├── prepare_scannet_mask3d_attributes.py ├── prepare_scannet_region_caption_annos.py ├── prepare_scanqa_annos.py ├── prepare_scanrefer_annos.py ├── prepare_scanrefer_location_annos.py ├── prepare_sqa3d_annos.py ├── prepare_sr3d_annos.py ├── process_scannet_data.py └── run_prepare.sh ├── prompts ├── concise_description.txt ├── concise_description_objxx.txt ├── conv_description.txt ├── dataset_generation │ ├── conversation.txt │ ├── detail.txt │ └── textualize_obj.txt ├── detailed_description.txt ├── grounding_answer_templates.txt ├── grounding_prompts.txt ├── instruction.txt ├── nr3d_caption_templates.txt ├── object_caption_templates.txt ├── prompts.py ├── scanrefer_caption_templates.txt ├── scene_align_template.txt ├── score_template.txt ├── score_template_old.txt ├── system.txt └── system_backup.txt ├── requirements.txt ├── scripts ├── config.py ├── deva_config.py └── run.sh ├── tasks ├── shared_utils.py └── train.py └── utils ├── __init__.py ├── basic_utils.py ├── box_utils.py ├── capeval ├── bleu │ ├── __init__.py │ ├── bleu.py │ └── bleu_scorer.py ├── cider │ ├── __init__.py │ ├── cider.py │ └── cider_scorer.py ├── get_stanford_models.sh ├── meteor │ ├── __init__.py │ ├── data │ │ └── paraphrase-en.gz │ ├── meteor-1.5.jar │ └── meteor.py └── rouge │ ├── __init__.py │ └── rouge.py ├── config.py ├── config_utils.py ├── distributed.py ├── easydict.py ├── eval.py ├── eval_tmp.py ├── helper.py ├── logger.py ├── optimizer.py ├── pc_util.py └── scheduler.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/README.md -------------------------------------------------------------------------------- /assets/scan2cap_benchmark_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/assets/scan2cap_benchmark_results.png -------------------------------------------------------------------------------- /assets/scanrefer_benchmark_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/assets/scanrefer_benchmark_results.png -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/dataset/__init__.py -------------------------------------------------------------------------------- /dataset/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/dataset/base_dataset.py -------------------------------------------------------------------------------- /dataset/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/dataset/dataloader.py -------------------------------------------------------------------------------- /dataset/dataset_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/dataset/dataset_train.py -------------------------------------------------------------------------------- /dataset/dataset_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/dataset/dataset_val.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/chat3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/chat3d.py -------------------------------------------------------------------------------- /models/configuration_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/configuration_llama.py -------------------------------------------------------------------------------- /models/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/helpers.py -------------------------------------------------------------------------------- /models/load_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/load_llama.py -------------------------------------------------------------------------------- /models/modeling_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/modeling_llama.py -------------------------------------------------------------------------------- /models/moe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/moe/__init__.py -------------------------------------------------------------------------------- /models/moe/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/moe/layer.py -------------------------------------------------------------------------------- /models/moe/moe_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/moe/moe_lora.py -------------------------------------------------------------------------------- /models/position_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/position_embedding.py -------------------------------------------------------------------------------- /models/transformer_vanilla/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/transformer_vanilla/__init__.py -------------------------------------------------------------------------------- /models/transformer_vanilla/mhsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/transformer_vanilla/mhsa.py -------------------------------------------------------------------------------- /models/transformer_vanilla/self_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/transformer_vanilla/self_attention.py -------------------------------------------------------------------------------- /models/transformer_vanilla/transformer_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/models/transformer_vanilla/transformer_block.py -------------------------------------------------------------------------------- /others/analyze_grounding_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/analyze_grounding_results.py -------------------------------------------------------------------------------- /others/calc_scanrefer_grounding_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/calc_scanrefer_grounding_acc.py -------------------------------------------------------------------------------- /others/eval_offline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/eval_offline.py -------------------------------------------------------------------------------- /others/extract_target_noun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/extract_target_noun.py -------------------------------------------------------------------------------- /others/gpt_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/gpt_generate.py -------------------------------------------------------------------------------- /others/ground_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/ground_visualize.py -------------------------------------------------------------------------------- /others/llama_tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/llama_tmp.py -------------------------------------------------------------------------------- /others/modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/modify.py -------------------------------------------------------------------------------- /others/prepare_anno_stage1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_anno_stage1.py -------------------------------------------------------------------------------- /others/prepare_captions_noun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_captions_noun.py -------------------------------------------------------------------------------- /others/prepare_describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_describe.py -------------------------------------------------------------------------------- /others/prepare_eval_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_eval_json.py -------------------------------------------------------------------------------- /others/prepare_identifier_rich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_identifier_rich.py -------------------------------------------------------------------------------- /others/prepare_multi3dref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_multi3dref.py -------------------------------------------------------------------------------- /others/prepare_obj_align_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_obj_align_data.py -------------------------------------------------------------------------------- /others/prepare_obj_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_obj_caption.py -------------------------------------------------------------------------------- /others/prepare_ref_captions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_ref_captions.py -------------------------------------------------------------------------------- /others/prepare_referit_anno_stage1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_referit_anno_stage1.py -------------------------------------------------------------------------------- /others/prepare_scanqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_scanqa.py -------------------------------------------------------------------------------- /others/prepare_scanrefer_grounding_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_scanrefer_grounding_train.py -------------------------------------------------------------------------------- /others/prepare_scene_align_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_scene_align_data.py -------------------------------------------------------------------------------- /others/prepare_scene_level_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_scene_level_dataset.py -------------------------------------------------------------------------------- /others/prepare_sqa3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_sqa3d.py -------------------------------------------------------------------------------- /others/prepare_train_stage3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/prepare_train_stage3.py -------------------------------------------------------------------------------- /others/process_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/process_annos.py -------------------------------------------------------------------------------- /others/process_preds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/process_preds.py -------------------------------------------------------------------------------- /others/process_scan2cap_test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/process_scan2cap_test_results.py -------------------------------------------------------------------------------- /others/process_scanqa_test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/process_scanqa_test_results.py -------------------------------------------------------------------------------- /others/process_scanrefer_test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/process_scanrefer_test_results.py -------------------------------------------------------------------------------- /others/process_vil3dref_multichoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/process_vil3dref_multichoice.py -------------------------------------------------------------------------------- /others/process_vil3dref_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/process_vil3dref_results.py -------------------------------------------------------------------------------- /others/run_chat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/run_chat.sh -------------------------------------------------------------------------------- /others/run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/run_eval.sh -------------------------------------------------------------------------------- /others/run_generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | OPENAI_API_KEY="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" python others/gpt_generate.py -------------------------------------------------------------------------------- /others/tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/tmp.py -------------------------------------------------------------------------------- /others/tmp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/tmp2.py -------------------------------------------------------------------------------- /others/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/visualize.py -------------------------------------------------------------------------------- /others/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/others/viz.py -------------------------------------------------------------------------------- /preprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/README.md -------------------------------------------------------------------------------- /preprocess/prepare_mask3d_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_mask3d_data.py -------------------------------------------------------------------------------- /preprocess/prepare_mask3d_img_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_mask3d_img_feat.py -------------------------------------------------------------------------------- /preprocess/prepare_multi3dref_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_multi3dref_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_multi3dref_location_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_multi3dref_location_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_nr3d_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_nr3d_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_nr3dcaption_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_nr3dcaption_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_objalign_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_objalign_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_scan2cap_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scan2cap_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_scan2cap_location_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scan2cap_location_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_scannet_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scannet_attributes.py -------------------------------------------------------------------------------- /preprocess/prepare_scannet_attributes_clasp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scannet_attributes_clasp.py -------------------------------------------------------------------------------- /preprocess/prepare_scannet_caption_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scannet_caption_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_scannet_mask3d_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scannet_mask3d_attributes.py -------------------------------------------------------------------------------- /preprocess/prepare_scannet_region_caption_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scannet_region_caption_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_scanqa_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scanqa_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_scanrefer_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scanrefer_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_scanrefer_location_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_scanrefer_location_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_sqa3d_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_sqa3d_annos.py -------------------------------------------------------------------------------- /preprocess/prepare_sr3d_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/prepare_sr3d_annos.py -------------------------------------------------------------------------------- /preprocess/process_scannet_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/process_scannet_data.py -------------------------------------------------------------------------------- /preprocess/run_prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/preprocess/run_prepare.sh -------------------------------------------------------------------------------- /prompts/concise_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/concise_description.txt -------------------------------------------------------------------------------- /prompts/concise_description_objxx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/concise_description_objxx.txt -------------------------------------------------------------------------------- /prompts/conv_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/conv_description.txt -------------------------------------------------------------------------------- /prompts/dataset_generation/conversation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/dataset_generation/conversation.txt -------------------------------------------------------------------------------- /prompts/dataset_generation/detail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/dataset_generation/detail.txt -------------------------------------------------------------------------------- /prompts/dataset_generation/textualize_obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/dataset_generation/textualize_obj.txt -------------------------------------------------------------------------------- /prompts/detailed_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/detailed_description.txt -------------------------------------------------------------------------------- /prompts/grounding_answer_templates.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prompts/grounding_prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/grounding_prompts.txt -------------------------------------------------------------------------------- /prompts/instruction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/instruction.txt -------------------------------------------------------------------------------- /prompts/nr3d_caption_templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/nr3d_caption_templates.txt -------------------------------------------------------------------------------- /prompts/object_caption_templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/object_caption_templates.txt -------------------------------------------------------------------------------- /prompts/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/prompts.py -------------------------------------------------------------------------------- /prompts/scanrefer_caption_templates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/scanrefer_caption_templates.txt -------------------------------------------------------------------------------- /prompts/scene_align_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/scene_align_template.txt -------------------------------------------------------------------------------- /prompts/score_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/score_template.txt -------------------------------------------------------------------------------- /prompts/score_template_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/score_template_old.txt -------------------------------------------------------------------------------- /prompts/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/system.txt -------------------------------------------------------------------------------- /prompts/system_backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/prompts/system_backup.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/scripts/config.py -------------------------------------------------------------------------------- /scripts/deva_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/scripts/deva_config.py -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /tasks/shared_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/tasks/shared_utils.py -------------------------------------------------------------------------------- /tasks/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/tasks/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/basic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/basic_utils.py -------------------------------------------------------------------------------- /utils/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/box_utils.py -------------------------------------------------------------------------------- /utils/capeval/bleu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/capeval/bleu/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/bleu/bleu.py -------------------------------------------------------------------------------- /utils/capeval/bleu/bleu_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/bleu/bleu_scorer.py -------------------------------------------------------------------------------- /utils/capeval/cider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/capeval/cider/cider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/cider/cider.py -------------------------------------------------------------------------------- /utils/capeval/cider/cider_scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/cider/cider_scorer.py -------------------------------------------------------------------------------- /utils/capeval/get_stanford_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/get_stanford_models.sh -------------------------------------------------------------------------------- /utils/capeval/meteor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/capeval/meteor/data/paraphrase-en.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/meteor/data/paraphrase-en.gz -------------------------------------------------------------------------------- /utils/capeval/meteor/meteor-1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/meteor/meteor-1.5.jar -------------------------------------------------------------------------------- /utils/capeval/meteor/meteor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/meteor/meteor.py -------------------------------------------------------------------------------- /utils/capeval/rouge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/capeval/rouge/rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/capeval/rouge/rouge.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/config_utils.py -------------------------------------------------------------------------------- /utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/distributed.py -------------------------------------------------------------------------------- /utils/easydict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/easydict.py -------------------------------------------------------------------------------- /utils/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/eval.py -------------------------------------------------------------------------------- /utils/eval_tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/eval_tmp.py -------------------------------------------------------------------------------- /utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/helper.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/optimizer.py -------------------------------------------------------------------------------- /utils/pc_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/pc_util.py -------------------------------------------------------------------------------- /utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZzZZCHS/Chat-Scene/HEAD/utils/scheduler.py --------------------------------------------------------------------------------