برنامج Salesforce Codegen، THUDM/ChatGLM-6B مع خادم الويب
شوكة من https://github.com/salesforce/CodeGen
إضافة دعم خادم الويب
دعم THUDM/ChatGLM-6B الآن
https://gitclone.com/aiit/chat/
https://github.com/git-cloner/codegeeker
https://zhuanlan.zhihu.com/p/598982945 أنشئ روبوت دردشة على مستوى الإنتاج مشابهًا لـ ChatGPT
https://www.zhihu.com/zvideo/1596160335995641856 روبوت الدردشة على أساس gpt-j-6b
https://zhuanlan.zhihu.com/p/594946225 إنشاء نموذج gpt-j-6b على مضيف سحابة Amazon AWS
https://zhuanlan.zhihu.com/p/588616069 اصنع مولد أكواد مجاني مشابه لمساعد الطيار github
https://zhuanlan.zhihu.com/p/620233511 ممارسة نموذج Tsinghua ChatGLM-6B
https://zhuanlan.zhihu.com/p/620070973 ممارسة التفكير الهائل للذكاء الاصطناعي
https://zhuanlan.zhihu.com/p/619954588 ممارسة الصينية-LLaMA-Alpaca
https://zhuanlan.zhihu.com/p/624286959 ممارسة نشر FastChat وبث الاتصال
استنساخ بوابة https://gitclone.com/github.com/git-cloner/codegen
conda create -n codegen python=3.8
conda activate codegen
pip install pillow -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
pip install torch torchvision torchaudio -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
pip install transformers==4.25.1 -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
pip install accelerate -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
pip install aiohttp==3.8.3 -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
pip install aiohttp_cors==0.7.0 -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
# pip install huggingface for gpt-neo
pip install datasets -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
pip install gradio -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
pip install sentencepiece==0.1.91 -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com
wget -P checkpoints https://storage.googleapis.com/sfr-codegen-research/checkpoints/codegen-350M-nl.tar.gz && tar -xvf checkpoints/codegen-350M-nl.tar.gz -C checkpoints/
wget -P checkpoints https://storage.googleapis.com/sfr-codegen-research/checkpoints/codegen-350M-multi.tar.gz && tar -xvf checkpoints/codegen-350M-multi.tar.gz -C checkpoints/
wget -P checkpoints https://storage.googleapis.com/sfr-codegen-research/checkpoints/codegen-350M-mono.tar.gz && tar -xvf checkpoints/codegen-350M-mono.tar.gz -C checkpoints/
conda activate codegen
python codegen.py
النشر: http://127.0.0.1:5001/codegen أو النشر المباشر إلى: https://gitclone.com/aiit/codegen
معلمات الإدخال: {"context": "def hello_world():"، "max length": 128}
إرجاع المعلمات: { "result": "n print("Hello World")n hello_world()n ", "time": 1.9620850095525384 }
معلمات الإدخال: {"context": "اكتب نسخة بايثون من فرز المصفوفات"، "maxlength":128}