├── LICENSE ├── README.md ├── assets ├── human_eval_7b_vs_chatgpt.jpg ├── logo.jpg └── overview.jpg ├── demo.py ├── inference.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alibaba-NLP/SeqGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alibaba-NLP/SeqGPT/HEAD/README.md -------------------------------------------------------------------------------- /assets/human_eval_7b_vs_chatgpt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alibaba-NLP/SeqGPT/HEAD/assets/human_eval_7b_vs_chatgpt.jpg -------------------------------------------------------------------------------- /assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alibaba-NLP/SeqGPT/HEAD/assets/logo.jpg -------------------------------------------------------------------------------- /assets/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alibaba-NLP/SeqGPT/HEAD/assets/overview.jpg -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alibaba-NLP/SeqGPT/HEAD/demo.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alibaba-NLP/SeqGPT/HEAD/inference.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | transformers==4.28.1 2 | torch 3 | peft 4 | cpm_kernels 5 | gradio --------------------------------------------------------------------------------