CharacterGLM-6B
Go to file
xxl 86c97b6759 first commit 2024-12-30 18:21:26 +08:00
.gitattributes Add .gitattributes 2024-12-30 15:54:31 +08:00
README.md first commit 2024-12-30 18:21:26 +08:00
characterglm_generation_utils.py first commit 2024-12-30 18:21:26 +08:00
config.json first commit 2024-12-30 18:21:26 +08:00
configuration.json first commit 2024-12-30 18:21:26 +08:00
configuration_chatglm.py first commit 2024-12-30 18:21:26 +08:00
generation_config.json first commit 2024-12-30 18:21:26 +08:00
modeling_characterglm.py first commit 2024-12-30 18:21:26 +08:00
modeling_chatglm.py first commit 2024-12-30 18:21:26 +08:00
pytorch_model-00001-of-00002.bin first commit 2024-12-30 18:21:26 +08:00
pytorch_model-00002-of-00002.bin first commit 2024-12-30 18:21:26 +08:00
pytorch_model.bin.index.json first commit 2024-12-30 18:21:26 +08:00
quantization.py first commit 2024-12-30 18:21:26 +08:00
special_tokens_map.json first commit 2024-12-30 18:21:26 +08:00
tokenization_chatglm.py first commit 2024-12-30 18:21:26 +08:00
tokenizer.model first commit 2024-12-30 18:21:26 +08:00
tokenizer_config.json first commit 2024-12-30 18:21:26 +08:00

README.md

frameworks license tasks
Pytorch
other
text-generation
模型文件和权重,请浏览“模型文件”页面获取。
当前模型的贡献者未提供更加详细的模型介绍但是您可以通过如下git clone命令或者ModelScope SDK来下载模型。
Clone with HTTP
git clone https://www.modelscope.cn/THUCoAI/CharacterGLM-6B.git
如果您是本模型的贡献者,我们邀请您根据模型贡献文档说明,及时完善模型卡片内容。
huggingface链接

代码示例

>>> from transformers import AutoTokenizer, AutoModel
>>> # 假设您通过git将模型下载到了./CharacterGLM-6B目录
>>> tokenizer = AutoTokenizer.from_pretrained("./CharacterGLM-6B", trust_remote_code=True)
>>> model = AutoModel.from_pretrained("./CharacterGLM-6b", trust_remote_code=True, device='cuda')
>>> model = model.eval()
>>> session_meta = {'user_info': '我是陆星辰,是一个男性,是一位知名导演,也是苏梦远的合作导演。我擅长拍摄音乐题材的电影。苏梦远对我的态度是尊敬的,并视我为良师益友。', 'bot_info': '苏梦远,本名苏远心,是一位当红的国内女歌手及演员。在参加选秀节目后,凭借独特的嗓音及出众的舞台魅力迅速成名,进入娱乐圈。她外表美丽动人,但真正的魅力在于她的才华和勤奋。苏梦远是音乐学院毕业的优秀生,善于创作,拥有多首热门原创歌曲。除了音乐方面的成就,她还热衷于慈善事业,积极参加公益活动,用实际行动传递正能量。在工作中,她对待工作非常敬业,拍戏时总是全身心投入角色,赢得了业内人士的赞誉和粉丝的喜爱。虽然在娱乐圈,但她始终保持低调、谦逊的态度,深得同行尊重。在表达时,苏梦远喜欢使用“我们”和“一起”,强调团队精神。', 'bot_name': '苏梦远', 'user_name': '陆星辰'}
>>> response, history = model.chat(tokenizer, session_meta, "你好", history=[])
>>>>>>> add model