├── .github └── workflows │ └── deploy-docs.yml ├── .gitignore ├── LICENSE.md ├── LICENSE_CC BY-NC 4.0 .md ├── LICENSE_EULA.md ├── LICENSE_MiniGPT4.md ├── README.md ├── app.py ├── app_EmotionLlamaClient.py ├── checkpoints ├── Llama-2-7b-chat-hf │ └── README.md └── save_checkpoint │ └── stage2 │ └── result │ └── MER2023.txt ├── docs ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── about │ ├── citation.md │ ├── index.md │ └── license.md ├── api │ ├── en.md │ ├── index.md │ └── zh.md ├── assets │ └── images │ │ ├── MER2023_SEMI.jpg │ │ ├── compare_datasets.jpg │ │ ├── data-example_sample_00000047_add_peak_00.png │ │ ├── demo_examples_other.jpg │ │ ├── demo_examples_task.jpg │ │ ├── demo_img01.png │ │ ├── demo_img02.png │ │ ├── example.jpg │ │ ├── framework.png │ │ ├── peak_frame_au_01.png │ │ ├── peak_frame_au_02.png │ │ └── table_03.jpg ├── dataset │ ├── construction.md │ └── index.md ├── demo │ └── index.md ├── evaluation │ └── index.md ├── getting-started │ ├── index.md │ └── quickstart.md ├── index.md └── training │ ├── index.md │ └── instruction-tuning.md ├── environment.yml ├── eval_configs ├── demo.yaml ├── eval_emotion.yaml └── eval_emotion_EMER.yaml ├── eval_emotion.py ├── eval_emotion_EMER.py ├── examples ├── sample_00000167.mp4 ├── sample_00000338.mp4 ├── sample_00000669.mp4 ├── sample_00000694.mp4 ├── sample_00000727.mp4 ├── sample_00001073.mp4 ├── sample_00002422.mp4 ├── sample_00003358.mp4 ├── sample_00003462.mp4 ├── sample_00004136.mp4 ├── sample_00004671.mp4 ├── sample_00004735.mp4 ├── sample_00005854.mp4 ├── samplenew_00004251.mp4 ├── samplenew_00051251.mp4 └── samplenew_00061200.mp4 ├── images ├── compare_datasets.jpg ├── data-example_sample_00000047_add_peak_00.png ├── demo_examples_other.jpg ├── demo_examples_task.jpg ├── demo_img01.png ├── demo_img02.png ├── framework.png └── table_03.jpg ├── infer_api.py ├── minigpt4 ├── __init__.py ├── __pycache__ │ └── __init__.cpython-39.pyc ├── common │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── config.cpython-39.pyc │ │ ├── dist_utils.cpython-39.pyc │ │ ├── eval_utils.cpython-39.pyc │ │ ├── logger.cpython-39.pyc │ │ ├── optims.cpython-39.pyc │ │ ├── registry.cpython-39.pyc │ │ └── utils.cpython-39.pyc │ ├── config.py │ ├── dist_utils.py │ ├── eval_utils.py │ ├── gradcam.py │ ├── logger.py │ ├── optims.py │ ├── registry.py │ ├── utils.py │ └── vqa_tools │ │ ├── VQA │ │ ├── PythonEvaluationTools │ │ │ ├── vqaEvalDemo.py │ │ │ └── vqaEvaluation │ │ │ │ ├── __init__.py │ │ │ │ └── vqaEval.py │ │ ├── PythonHelperTools │ │ │ ├── vqaDemo.py │ │ │ └── vqaTools │ │ │ │ ├── __init__.py │ │ │ │ └── vqa.py │ │ ├── QuestionTypes │ │ │ ├── abstract_v002_question_types.txt │ │ │ └── mscoco_question_types.txt │ │ ├── README.md │ │ └── license.txt │ │ ├── __init__.py │ │ ├── vqa.py │ │ └── vqa_eval.py ├── configs │ ├── datasets │ │ └── firstface │ │ │ ├── featureface.yaml │ │ │ └── mer2024.yaml │ ├── default.yaml │ └── models │ │ ├── minigpt4_llama2.yaml │ │ ├── minigpt4_vicuna0.yaml │ │ └── minigpt_v2.yaml ├── conversation │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── conversation.cpython-39.pyc │ └── conversation.py ├── datasets │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── data_utils.cpython-39.pyc │ ├── builders │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── base_dataset_builder.cpython-39.pyc │ │ │ └── image_text_pair_builder.cpython-39.pyc │ │ ├── base_dataset_builder.py │ │ └── image_text_pair_builder.py │ ├── data_utils.py │ └── datasets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── aok_vqa_datasets.cpython-39.pyc │ │ ├── base_dataset.cpython-39.pyc │ │ ├── caption_datasets.cpython-39.pyc │ │ ├── cc_sbu_dataset.cpython-39.pyc │ │ ├── coco_caption.cpython-39.pyc │ │ ├── coco_dataset.cpython-39.pyc │ │ ├── coco_vqa_datasets.cpython-39.pyc │ │ ├── dataloader_utils.cpython-39.pyc │ │ ├── face_emotion.cpython-39.pyc │ │ ├── first_face.cpython-39.pyc │ │ ├── flickr.cpython-39.pyc │ │ ├── gqa_datasets.cpython-39.pyc │ │ ├── laion_dataset.cpython-39.pyc │ │ ├── llava_dataset.cpython-39.pyc │ │ ├── multitask_conversation.cpython-39.pyc │ │ ├── ocrvqa_dataset.cpython-39.pyc │ │ ├── text_caps.cpython-39.pyc │ │ ├── unnatural_instruction.cpython-39.pyc │ │ ├── vg_dataset.cpython-39.pyc │ │ └── vqa_datasets.cpython-39.pyc │ │ ├── base_dataset.py │ │ ├── dataloader_utils.py │ │ ├── first_face.py │ │ └── mer2024.py ├── minigpt4.md ├── models │ ├── Qformer.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── Qformer.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── base_model.cpython-39.pyc │ │ ├── eva_vit.cpython-39.pyc │ │ ├── minigpt4.cpython-39.pyc │ │ ├── minigpt_base.cpython-39.pyc │ │ ├── minigpt_v2.cpython-39.pyc │ │ └── modeling_llama.cpython-39.pyc │ ├── base_model.py │ ├── eva_vit.py │ ├── minigpt4.py │ ├── minigpt_base.py │ ├── minigpt_v2.py │ └── modeling_llama.py ├── processors │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── base_processor.cpython-39.pyc │ │ ├── blip_processors.cpython-39.pyc │ │ └── randaugment.cpython-39.pyc │ ├── base_processor.py │ ├── blip_processors.py │ └── randaugment.py ├── runners │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── runner_base.cpython-39.pyc │ └── runner_base.py └── tasks │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── base_task.cpython-39.pyc │ └── image_text_pretrain.cpython-39.pyc │ ├── base_task.py │ └── image_text_pretrain.py ├── requirements.txt ├── train.py └── train_configs ├── Emotion-LLaMA_finetune.yaml └── minigptv2_tuning_stage_2.yaml /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE_CC BY-NC 4.0 .md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/LICENSE_CC BY-NC 4.0 .md -------------------------------------------------------------------------------- /LICENSE_EULA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/LICENSE_EULA.md -------------------------------------------------------------------------------- /LICENSE_MiniGPT4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/LICENSE_MiniGPT4.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/app.py -------------------------------------------------------------------------------- /app_EmotionLlamaClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/app_EmotionLlamaClient.py -------------------------------------------------------------------------------- /checkpoints/Llama-2-7b-chat-hf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/checkpoints/Llama-2-7b-chat-hf/README.md -------------------------------------------------------------------------------- /checkpoints/save_checkpoint/stage2/result/MER2023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/checkpoints/save_checkpoint/stage2/result/MER2023.txt -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/about/citation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/about/citation.md -------------------------------------------------------------------------------- /docs/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/about/index.md -------------------------------------------------------------------------------- /docs/about/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/about/license.md -------------------------------------------------------------------------------- /docs/api/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/api/en.md -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/api/zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/api/zh.md -------------------------------------------------------------------------------- /docs/assets/images/MER2023_SEMI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/MER2023_SEMI.jpg -------------------------------------------------------------------------------- /docs/assets/images/compare_datasets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/compare_datasets.jpg -------------------------------------------------------------------------------- /docs/assets/images/data-example_sample_00000047_add_peak_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/data-example_sample_00000047_add_peak_00.png -------------------------------------------------------------------------------- /docs/assets/images/demo_examples_other.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/demo_examples_other.jpg -------------------------------------------------------------------------------- /docs/assets/images/demo_examples_task.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/demo_examples_task.jpg -------------------------------------------------------------------------------- /docs/assets/images/demo_img01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/demo_img01.png -------------------------------------------------------------------------------- /docs/assets/images/demo_img02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/demo_img02.png -------------------------------------------------------------------------------- /docs/assets/images/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/example.jpg -------------------------------------------------------------------------------- /docs/assets/images/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/framework.png -------------------------------------------------------------------------------- /docs/assets/images/peak_frame_au_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/peak_frame_au_01.png -------------------------------------------------------------------------------- /docs/assets/images/peak_frame_au_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/peak_frame_au_02.png -------------------------------------------------------------------------------- /docs/assets/images/table_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/assets/images/table_03.jpg -------------------------------------------------------------------------------- /docs/dataset/construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/dataset/construction.md -------------------------------------------------------------------------------- /docs/dataset/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/dataset/index.md -------------------------------------------------------------------------------- /docs/demo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/demo/index.md -------------------------------------------------------------------------------- /docs/evaluation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/evaluation/index.md -------------------------------------------------------------------------------- /docs/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/getting-started/index.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/getting-started/quickstart.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/training/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/training/index.md -------------------------------------------------------------------------------- /docs/training/instruction-tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/docs/training/instruction-tuning.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/environment.yml -------------------------------------------------------------------------------- /eval_configs/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/eval_configs/demo.yaml -------------------------------------------------------------------------------- /eval_configs/eval_emotion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/eval_configs/eval_emotion.yaml -------------------------------------------------------------------------------- /eval_configs/eval_emotion_EMER.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/eval_configs/eval_emotion_EMER.yaml -------------------------------------------------------------------------------- /eval_emotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/eval_emotion.py -------------------------------------------------------------------------------- /eval_emotion_EMER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/eval_emotion_EMER.py -------------------------------------------------------------------------------- /examples/sample_00000167.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00000167.mp4 -------------------------------------------------------------------------------- /examples/sample_00000338.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00000338.mp4 -------------------------------------------------------------------------------- /examples/sample_00000669.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00000669.mp4 -------------------------------------------------------------------------------- /examples/sample_00000694.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00000694.mp4 -------------------------------------------------------------------------------- /examples/sample_00000727.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00000727.mp4 -------------------------------------------------------------------------------- /examples/sample_00001073.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00001073.mp4 -------------------------------------------------------------------------------- /examples/sample_00002422.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00002422.mp4 -------------------------------------------------------------------------------- /examples/sample_00003358.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00003358.mp4 -------------------------------------------------------------------------------- /examples/sample_00003462.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00003462.mp4 -------------------------------------------------------------------------------- /examples/sample_00004136.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00004136.mp4 -------------------------------------------------------------------------------- /examples/sample_00004671.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00004671.mp4 -------------------------------------------------------------------------------- /examples/sample_00004735.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00004735.mp4 -------------------------------------------------------------------------------- /examples/sample_00005854.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/sample_00005854.mp4 -------------------------------------------------------------------------------- /examples/samplenew_00004251.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/samplenew_00004251.mp4 -------------------------------------------------------------------------------- /examples/samplenew_00051251.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/samplenew_00051251.mp4 -------------------------------------------------------------------------------- /examples/samplenew_00061200.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/examples/samplenew_00061200.mp4 -------------------------------------------------------------------------------- /images/compare_datasets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/images/compare_datasets.jpg -------------------------------------------------------------------------------- /images/data-example_sample_00000047_add_peak_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/images/data-example_sample_00000047_add_peak_00.png -------------------------------------------------------------------------------- /images/demo_examples_other.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/images/demo_examples_other.jpg -------------------------------------------------------------------------------- /images/demo_examples_task.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/images/demo_examples_task.jpg -------------------------------------------------------------------------------- /images/demo_img01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/images/demo_img01.png -------------------------------------------------------------------------------- /images/demo_img02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/images/demo_img02.png -------------------------------------------------------------------------------- /images/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/images/framework.png -------------------------------------------------------------------------------- /images/table_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/images/table_03.jpg -------------------------------------------------------------------------------- /infer_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/infer_api.py -------------------------------------------------------------------------------- /minigpt4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/__init__.py -------------------------------------------------------------------------------- /minigpt4/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minigpt4/common/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/__pycache__/dist_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/__pycache__/dist_utils.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/__pycache__/eval_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/__pycache__/eval_utils.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/__pycache__/logger.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/__pycache__/logger.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/__pycache__/optims.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/__pycache__/optims.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/__pycache__/registry.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/__pycache__/registry.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/config.py -------------------------------------------------------------------------------- /minigpt4/common/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/dist_utils.py -------------------------------------------------------------------------------- /minigpt4/common/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/eval_utils.py -------------------------------------------------------------------------------- /minigpt4/common/gradcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/gradcam.py -------------------------------------------------------------------------------- /minigpt4/common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/logger.py -------------------------------------------------------------------------------- /minigpt4/common/optims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/optims.py -------------------------------------------------------------------------------- /minigpt4/common/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/registry.py -------------------------------------------------------------------------------- /minigpt4/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/utils.py -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/PythonEvaluationTools/vqaEvalDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/VQA/PythonEvaluationTools/vqaEvalDemo.py -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/PythonEvaluationTools/vqaEvaluation/__init__.py: -------------------------------------------------------------------------------- 1 | author='aagrawal' 2 | -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/PythonEvaluationTools/vqaEvaluation/vqaEval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/VQA/PythonEvaluationTools/vqaEvaluation/vqaEval.py -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/PythonHelperTools/vqaDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/VQA/PythonHelperTools/vqaDemo.py -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/PythonHelperTools/vqaTools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'aagrawal' 2 | -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/PythonHelperTools/vqaTools/vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/VQA/PythonHelperTools/vqaTools/vqa.py -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/QuestionTypes/abstract_v002_question_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/VQA/QuestionTypes/abstract_v002_question_types.txt -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/QuestionTypes/mscoco_question_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/VQA/QuestionTypes/mscoco_question_types.txt -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/VQA/README.md -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/VQA/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/VQA/license.txt -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/__init__.py -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/vqa.py -------------------------------------------------------------------------------- /minigpt4/common/vqa_tools/vqa_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/common/vqa_tools/vqa_eval.py -------------------------------------------------------------------------------- /minigpt4/configs/datasets/firstface/featureface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/configs/datasets/firstface/featureface.yaml -------------------------------------------------------------------------------- /minigpt4/configs/datasets/firstface/mer2024.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/configs/datasets/firstface/mer2024.yaml -------------------------------------------------------------------------------- /minigpt4/configs/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/configs/default.yaml -------------------------------------------------------------------------------- /minigpt4/configs/models/minigpt4_llama2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/configs/models/minigpt4_llama2.yaml -------------------------------------------------------------------------------- /minigpt4/configs/models/minigpt4_vicuna0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/configs/models/minigpt4_vicuna0.yaml -------------------------------------------------------------------------------- /minigpt4/configs/models/minigpt_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/configs/models/minigpt_v2.yaml -------------------------------------------------------------------------------- /minigpt4/conversation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minigpt4/conversation/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/conversation/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/conversation/__pycache__/conversation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/conversation/__pycache__/conversation.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/conversation/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/conversation/conversation.py -------------------------------------------------------------------------------- /minigpt4/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minigpt4/datasets/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/__pycache__/data_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/__pycache__/data_utils.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/builders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/builders/__init__.py -------------------------------------------------------------------------------- /minigpt4/datasets/builders/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/builders/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/builders/__pycache__/base_dataset_builder.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/builders/__pycache__/base_dataset_builder.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/builders/__pycache__/image_text_pair_builder.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/builders/__pycache__/image_text_pair_builder.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/builders/base_dataset_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/builders/base_dataset_builder.py -------------------------------------------------------------------------------- /minigpt4/datasets/builders/image_text_pair_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/builders/image_text_pair_builder.py -------------------------------------------------------------------------------- /minigpt4/datasets/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/data_utils.py -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/aok_vqa_datasets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/aok_vqa_datasets.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/base_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/base_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/caption_datasets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/caption_datasets.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/cc_sbu_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/cc_sbu_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/coco_caption.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/coco_caption.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/coco_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/coco_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/coco_vqa_datasets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/coco_vqa_datasets.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/dataloader_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/dataloader_utils.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/face_emotion.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/face_emotion.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/first_face.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/first_face.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/flickr.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/flickr.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/gqa_datasets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/gqa_datasets.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/laion_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/laion_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/llava_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/llava_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/multitask_conversation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/multitask_conversation.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/ocrvqa_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/ocrvqa_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/text_caps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/text_caps.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/unnatural_instruction.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/unnatural_instruction.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/vg_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/vg_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/__pycache__/vqa_datasets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/__pycache__/vqa_datasets.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/base_dataset.py -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/dataloader_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/dataloader_utils.py -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/first_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/first_face.py -------------------------------------------------------------------------------- /minigpt4/datasets/datasets/mer2024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/datasets/datasets/mer2024.py -------------------------------------------------------------------------------- /minigpt4/minigpt4.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /minigpt4/models/Qformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/Qformer.py -------------------------------------------------------------------------------- /minigpt4/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__init__.py -------------------------------------------------------------------------------- /minigpt4/models/__pycache__/Qformer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__pycache__/Qformer.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/models/__pycache__/base_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__pycache__/base_model.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/models/__pycache__/eva_vit.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__pycache__/eva_vit.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/models/__pycache__/minigpt4.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__pycache__/minigpt4.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/models/__pycache__/minigpt_base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__pycache__/minigpt_base.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/models/__pycache__/minigpt_v2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__pycache__/minigpt_v2.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/models/__pycache__/modeling_llama.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/__pycache__/modeling_llama.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/base_model.py -------------------------------------------------------------------------------- /minigpt4/models/eva_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/eva_vit.py -------------------------------------------------------------------------------- /minigpt4/models/minigpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/minigpt4.py -------------------------------------------------------------------------------- /minigpt4/models/minigpt_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/minigpt_base.py -------------------------------------------------------------------------------- /minigpt4/models/minigpt_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/minigpt_v2.py -------------------------------------------------------------------------------- /minigpt4/models/modeling_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/models/modeling_llama.py -------------------------------------------------------------------------------- /minigpt4/processors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/processors/__init__.py -------------------------------------------------------------------------------- /minigpt4/processors/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/processors/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/processors/__pycache__/base_processor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/processors/__pycache__/base_processor.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/processors/__pycache__/blip_processors.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/processors/__pycache__/blip_processors.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/processors/__pycache__/randaugment.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/processors/__pycache__/randaugment.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/processors/base_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/processors/base_processor.py -------------------------------------------------------------------------------- /minigpt4/processors/blip_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/processors/blip_processors.py -------------------------------------------------------------------------------- /minigpt4/processors/randaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/processors/randaugment.py -------------------------------------------------------------------------------- /minigpt4/runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/runners/__init__.py -------------------------------------------------------------------------------- /minigpt4/runners/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/runners/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/runners/__pycache__/runner_base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/runners/__pycache__/runner_base.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/runners/runner_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/runners/runner_base.py -------------------------------------------------------------------------------- /minigpt4/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/tasks/__init__.py -------------------------------------------------------------------------------- /minigpt4/tasks/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/tasks/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/tasks/__pycache__/base_task.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/tasks/__pycache__/base_task.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/tasks/__pycache__/image_text_pretrain.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/tasks/__pycache__/image_text_pretrain.cpython-39.pyc -------------------------------------------------------------------------------- /minigpt4/tasks/base_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/tasks/base_task.py -------------------------------------------------------------------------------- /minigpt4/tasks/image_text_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/minigpt4/tasks/image_text_pretrain.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/train.py -------------------------------------------------------------------------------- /train_configs/Emotion-LLaMA_finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/train_configs/Emotion-LLaMA_finetune.yaml -------------------------------------------------------------------------------- /train_configs/minigptv2_tuning_stage_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZebangCheng/Emotion-LLaMA/HEAD/train_configs/minigptv2_tuning_stage_2.yaml --------------------------------------------------------------------------------