├── .gitignore ├── DISCLAIMER ├── LICENSE ├── README.md ├── README_CN.md ├── cli_demo.py ├── eval_qwen_wisdomvast.py ├── images ├── image.png └── logo.png ├── merge_lora.py ├── requirements.txt ├── vllm_web_demo.py └── web_demo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/.gitignore -------------------------------------------------------------------------------- /DISCLAIMER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/DISCLAIMER -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/README_CN.md -------------------------------------------------------------------------------- /cli_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/cli_demo.py -------------------------------------------------------------------------------- /eval_qwen_wisdomvast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/eval_qwen_wisdomvast.py -------------------------------------------------------------------------------- /images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/images/image.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/images/logo.png -------------------------------------------------------------------------------- /merge_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/merge_lora.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | transformers==4.39.3 2 | vllm==0.4.0.post1 3 | torch==2.1.2 -------------------------------------------------------------------------------- /vllm_web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/vllm_web_demo.py -------------------------------------------------------------------------------- /web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanzhang-zhichen/Qwen-WisdomVast/HEAD/web_demo.py --------------------------------------------------------------------------------