天机-送祝福-7b
天机是一款免费使用、非商业用途的人工智能系统。您可以利用它进行涉及人情世故的任务,如话中有话翻译、说话的艺术建议等,以提升您的情商和核心竞争能力。我们坚信,只有人情世故才是未来AI的核心竞争力,让我们携手见证通用人工智能的来临。 —— "天机不可泄漏。"
Tianji is a free, non-commercial artificial intelligence system. You can utilize it for tasks involving worldly wisdom, such as "subtext translation" and "art of conversation," to enhance your emotional intelligence and core competitiveness. We firmly believe that worldly wisdom are the future core competency of AI, and let us join hands to witness the advent of general artificial intelligence.
SocialAI(来事儿AI) 是设立于中国的非营利组织,我们完全开源了Tianji(天机)系列工作,当前开源模型为送祝福专用微调模型,你可以用它来完成各类送祝福任务。
天机地址:https://github.com/SocialAI-tianji
快速开始
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
mode_name_or_path = '下载好的天机模型地址'
tokenizer = AutoTokenizer.from_pretrained(mode_name_or_path, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(mode_name_or_path, torch_dtype=torch.float16, trust_remote_code=True).cuda().eval()
response, history = model.chat(tokenizer, '祝姐姐考试顺利', meta_instruction='你现在是一个送祝福大师,帮我针对不同人和事情、节日送对应的祝福')
print(response)
致谢
***感谢上海人工智能实验室组织的 书生·浦语实战营 学习活动~***
***感谢 OpenXLab 对项目部署的算力支持~***
***感谢 浦语小助手 对项目的支持~***
评论