├── .gitignore ├── README.md ├── README_en.md ├── aijudge ├── README.md ├── data │ └── samples.json └── demo │ ├── generate.py │ └── web_demo_gpt2.py ├── ailawyer ├── README.md ├── data │ └── samples.json ├── demo │ ├── generate.py │ └── web_demo_llama_13B.py └── utils │ ├── convert_llama_weights_to_hf.py │ └── merge_llama_with_chinese_lora_to_hf.py ├── images ├── aijudge_gpt2.png └── ailawyer_llama.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/README_en.md -------------------------------------------------------------------------------- /aijudge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/aijudge/README.md -------------------------------------------------------------------------------- /aijudge/data/samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/aijudge/data/samples.json -------------------------------------------------------------------------------- /aijudge/demo/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/aijudge/demo/generate.py -------------------------------------------------------------------------------- /aijudge/demo/web_demo_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/aijudge/demo/web_demo_gpt2.py -------------------------------------------------------------------------------- /ailawyer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/ailawyer/README.md -------------------------------------------------------------------------------- /ailawyer/data/samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/ailawyer/data/samples.json -------------------------------------------------------------------------------- /ailawyer/demo/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/ailawyer/demo/generate.py -------------------------------------------------------------------------------- /ailawyer/demo/web_demo_llama_13B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/ailawyer/demo/web_demo_llama_13B.py -------------------------------------------------------------------------------- /ailawyer/utils/convert_llama_weights_to_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/ailawyer/utils/convert_llama_weights_to_hf.py -------------------------------------------------------------------------------- /ailawyer/utils/merge_llama_with_chinese_lora_to_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/ailawyer/utils/merge_llama_with_chinese_lora_to_hf.py -------------------------------------------------------------------------------- /images/aijudge_gpt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/images/aijudge_gpt2.png -------------------------------------------------------------------------------- /images/ailawyer_llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/images/ailawyer_llama.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEUIAI/JurisLMs/HEAD/requirements.txt --------------------------------------------------------------------------------