├── LICENSE ├── README.md ├── answer_gen.py ├── answer_gen_aes.py ├── asset ├── eval_res.png └── overview.jpg ├── lib └── video_generation_model.py ├── metric_cal.py ├── prompt_gen_pipeline.py ├── requirements.txt ├── resource ├── instruct │ ├── instruct_prompt_suite_gen.txt │ └── instruct_prompt_suite_gen_example │ │ ├── scene_attribute_tna_1.txt │ │ ├── scene_attribute_tna_2.txt │ │ ├── scene_attribute_tna_3.txt │ │ ├── scene_attribute_tna_4.txt │ │ ├── scene_attribute_tna_5.txt │ │ ├── scene_attribute_tna_6.txt │ │ ├── target_action_tna_1.txt │ │ ├── target_action_tna_2.txt │ │ ├── target_action_tna_3.txt │ │ ├── target_action_tna_4.txt │ │ ├── target_action_tna_5.txt │ │ ├── target_action_tna_6.txt │ │ ├── target_attribute_tna_1.txt │ │ ├── target_attribute_tna_2.txt │ │ ├── target_attribute_tna_3.txt │ │ ├── target_attribute_tna_4.txt │ │ ├── target_attribute_tna_5.txt │ │ └── target_attribute_tna_6.txt ├── prompt_suite │ ├── prompt_suit_v4_scene_attribute_tna_1.json │ ├── prompt_suit_v4_scene_attribute_tna_2.json │ ├── prompt_suit_v4_scene_attribute_tna_3.json │ ├── prompt_suit_v4_scene_attribute_tna_4.json │ ├── prompt_suit_v4_scene_attribute_tna_5.json │ ├── prompt_suit_v4_scene_attribute_tna_6.json │ ├── prompt_suit_v4_target_action_tna_1.json │ ├── prompt_suit_v4_target_action_tna_2.json │ ├── prompt_suit_v4_target_action_tna_3.json │ ├── prompt_suit_v4_target_action_tna_4.json │ ├── prompt_suit_v4_target_action_tna_5.json │ ├── prompt_suit_v4_target_action_tna_6.json │ ├── prompt_suit_v4_target_attribute_tna_1.json │ ├── prompt_suit_v4_target_attribute_tna_2.json │ ├── prompt_suit_v4_target_attribute_tna_3.json │ ├── prompt_suit_v4_target_attribute_tna_4.json │ ├── prompt_suit_v4_target_attribute_tna_5.json │ └── prompt_suit_v4_target_attribute_tna_6.json └── scene_object_set_infor.json └── video_gen.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/README.md -------------------------------------------------------------------------------- /answer_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/answer_gen.py -------------------------------------------------------------------------------- /answer_gen_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/answer_gen_aes.py -------------------------------------------------------------------------------- /asset/eval_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/asset/eval_res.png -------------------------------------------------------------------------------- /asset/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/asset/overview.jpg -------------------------------------------------------------------------------- /lib/video_generation_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/lib/video_generation_model.py -------------------------------------------------------------------------------- /metric_cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/metric_cal.py -------------------------------------------------------------------------------- /prompt_gen_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/prompt_gen_pipeline.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_1.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_2.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_3.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_4.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_5.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/scene_attribute_tna_6.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_1.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_2.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_3.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_4.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_5.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_action_tna_6.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_1.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_2.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_3.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_4.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_5.txt -------------------------------------------------------------------------------- /resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/instruct/instruct_prompt_suite_gen_example/target_attribute_tna_6.txt -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_1.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_2.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_3.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_4.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_5.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_scene_attribute_tna_6.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_action_tna_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_action_tna_1.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_action_tna_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_action_tna_2.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_action_tna_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_action_tna_3.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_action_tna_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_action_tna_4.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_action_tna_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_action_tna_5.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_action_tna_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_action_tna_6.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_attribute_tna_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_attribute_tna_1.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_attribute_tna_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_attribute_tna_2.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_attribute_tna_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_attribute_tna_3.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_attribute_tna_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_attribute_tna_4.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_attribute_tna_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_attribute_tna_5.json -------------------------------------------------------------------------------- /resource/prompt_suite/prompt_suit_v4_target_attribute_tna_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/prompt_suite/prompt_suit_v4_target_attribute_tna_6.json -------------------------------------------------------------------------------- /resource/scene_object_set_infor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/resource/scene_object_set_infor.json -------------------------------------------------------------------------------- /video_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMAP-ML/NarrLV/HEAD/video_gen.py --------------------------------------------------------------------------------