├── LICENSE ├── README.md ├── assets ├── Dialogue_cases │ ├── mindchat_13B_dialogue_cases.md │ ├── mindchat_Internlm_7B_dialogue_cases.md │ └── mindchat_Qwen_7B_dialogue_cases.md └── image │ ├── .ipynb_checkpoints │ └── wechat_group-checkpoint.jpg │ ├── 1691213043049.jpg │ ├── MindChat-mobile.gif │ ├── datasets_flow_chart.jpg │ ├── dialogue.gif │ ├── logo-github.png │ ├── logo.png │ ├── modelscope_logo.png │ ├── web_demo.png │ ├── wechat_group.jpg │ ├── word_cloud.png │ └── yibing.png ├── cli_demo.py ├── data └── dataset_example.json ├── docs ├── inference.md └── model_list.md ├── qwen2_weui_demo.py ├── requirements.txt ├── scripts ├── mindchat_qwen_inference_hf.py └── mindchat_qwen_inference_ms.py └── webui_demo.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/README.md -------------------------------------------------------------------------------- /assets/Dialogue_cases/mindchat_13B_dialogue_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/Dialogue_cases/mindchat_13B_dialogue_cases.md -------------------------------------------------------------------------------- /assets/Dialogue_cases/mindchat_Internlm_7B_dialogue_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/Dialogue_cases/mindchat_Internlm_7B_dialogue_cases.md -------------------------------------------------------------------------------- /assets/Dialogue_cases/mindchat_Qwen_7B_dialogue_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/Dialogue_cases/mindchat_Qwen_7B_dialogue_cases.md -------------------------------------------------------------------------------- /assets/image/.ipynb_checkpoints/wechat_group-checkpoint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/.ipynb_checkpoints/wechat_group-checkpoint.jpg -------------------------------------------------------------------------------- /assets/image/1691213043049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/1691213043049.jpg -------------------------------------------------------------------------------- /assets/image/MindChat-mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/MindChat-mobile.gif -------------------------------------------------------------------------------- /assets/image/datasets_flow_chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/datasets_flow_chart.jpg -------------------------------------------------------------------------------- /assets/image/dialogue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/dialogue.gif -------------------------------------------------------------------------------- /assets/image/logo-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/logo-github.png -------------------------------------------------------------------------------- /assets/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/logo.png -------------------------------------------------------------------------------- /assets/image/modelscope_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/modelscope_logo.png -------------------------------------------------------------------------------- /assets/image/web_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/web_demo.png -------------------------------------------------------------------------------- /assets/image/wechat_group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/wechat_group.jpg -------------------------------------------------------------------------------- /assets/image/word_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/word_cloud.png -------------------------------------------------------------------------------- /assets/image/yibing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/assets/image/yibing.png -------------------------------------------------------------------------------- /cli_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/cli_demo.py -------------------------------------------------------------------------------- /data/dataset_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/data/dataset_example.json -------------------------------------------------------------------------------- /docs/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/docs/inference.md -------------------------------------------------------------------------------- /docs/model_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/docs/model_list.md -------------------------------------------------------------------------------- /qwen2_weui_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/qwen2_weui_demo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/mindchat_qwen_inference_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/scripts/mindchat_qwen_inference_hf.py -------------------------------------------------------------------------------- /scripts/mindchat_qwen_inference_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/scripts/mindchat_qwen_inference_ms.py -------------------------------------------------------------------------------- /webui_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-D-Lab/MindChat/HEAD/webui_demo.py --------------------------------------------------------------------------------