x54-729 commited on
Commit
55facc7
1 Parent(s): d85414b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -34
README.md CHANGED
@@ -72,23 +72,6 @@ The table below compares the performance of mainstream open-source models on som
72
 
73
  Overall, InternLM-20B comprehensively outperforms open-source models in the 13B parameter range in terms of overall capabilities, and on inference evaluation sets, it approaches or even surpasses the performance of Llama-65B.
74
 
75
- ## Import from Transformers
76
- To load the InternLM 7B Chat model using Transformers, use the following code:
77
- ```python
78
- >>> from transformers import AutoTokenizer, AutoModelForCausalLM
79
- >>> tokenizer = AutoTokenizer.from_pretrained("internlm/internlm-chat-20b", trust_remote_code=True)
80
- >>> model = AutoModelForCausalLM.from_pretrained("internlm/internlm-chat-20b", trust_remote_code=True).cuda()
81
- >>> model = model.eval()
82
- >>> inputs = tokenizer(["Coming to the beautiful nature, we found"], return_tensors="pt")
83
- >>> for k,v in inputs.items():
84
- inputs[k] = v.cuda()
85
- >>> gen_kwargs = {"max_length": 128, "top_p": 0.8, "temperature": 0.8, "do_sample": True, "repetition_penalty": 1.05}
86
- >>> output = model.generate(**inputs, **gen_kwargs)
87
- >>> output = tokenizer.decode(output[0].tolist(), skip_special_tokens=True)
88
- >>> print(output)
89
- Coming to the beautiful nature, we found not only various mountains, rivers, trees, and flowers but also many birds and beasts. Birds are the ones we are most familiar with; some are soaring in the sky, some are hopping on the ground, while others perch on trees...
90
- ```
91
-
92
  **Limitations:** Although we have made efforts to ensure the safety of the model during the training process and to encourage the model to generate text that complies with ethical and legal requirements, the model may still produce unexpected outputs due to its size and probabilistic generation paradigm. For example, the generated responses may contain biases, discrimination, or other harmful content. Please do not propagate such content. We are not responsible for any consequences resulting from the dissemination of harmful information.
93
 
94
 
@@ -142,23 +125,6 @@ InternLM 20B 在模型结构上选择了深结构,层数设定为60层,超
142
 
143
  总体而言,InternLM-20B 在综合能力上全面领先于13B量级的开源模型,同时在推理评测集上能够接近甚至超越Llama-65B的性能。
144
 
145
- ## 通过 Transformers 加载
146
- 通过以下的代码加载 InternLM 20B 模型
147
- ```python
148
- >>> from transformers import AutoTokenizer, AutoModelForCausalLM
149
- >>> tokenizer = AutoTokenizer.from_pretrained("internlm/internlm-chat-20b", trust_remote_code=True)
150
- >>> model = AutoModelForCausalLM.from_pretrained("internlm/internlm-chat-20b", trust_remote_code=True).cuda()
151
- >>> model = model.eval()
152
- >>> inputs = tokenizer(["来到美丽的大自然,我们发现"], return_tensors="pt")
153
- >>> for k,v in inputs.items():
154
- inputs[k] = v.cuda()
155
- >>> gen_kwargs = {"max_length": 128, "top_p": 0.8, "temperature": 0.8, "do_sample": True, "repetition_penalty": 1.05}
156
- >>> output = model.generate(**inputs, **gen_kwargs)
157
- >>> output = tokenizer.decode(output[0].tolist(), skip_special_tokens=True)
158
- >>> print(output)
159
- 来到美丽的大自然,我们发现,这里不仅有大大小小的山川河流和树木花草,而且还有很多飞鸟走兽。我们最熟悉的就是鸟类了,它们有的在天上飞翔,有的在地上跳跃,还有的在树上栖息……
160
- ```
161
-
162
  **局限性:** 尽管在训练过程中我们非常注重模型的安全性,尽力促使模型输出符合伦理和法律要求的文本,但受限于模型大小以及概率生成范式,模型可能会产生各种不符合预期的输出,例如回复内容包含偏见、歧视等有害内容,请勿传播这些内容。由于传播不良信息导致的任何后果,本项目不承担责任。
163
 
164
  ## 开源许可证
 
72
 
73
  Overall, InternLM-20B comprehensively outperforms open-source models in the 13B parameter range in terms of overall capabilities, and on inference evaluation sets, it approaches or even surpasses the performance of Llama-65B.
74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  **Limitations:** Although we have made efforts to ensure the safety of the model during the training process and to encourage the model to generate text that complies with ethical and legal requirements, the model may still produce unexpected outputs due to its size and probabilistic generation paradigm. For example, the generated responses may contain biases, discrimination, or other harmful content. Please do not propagate such content. We are not responsible for any consequences resulting from the dissemination of harmful information.
76
 
77
 
 
125
 
126
  总体而言,InternLM-20B 在综合能力上全面领先于13B量级的开源模型,同时在推理评测集上能够接近甚至超越Llama-65B的性能。
127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  **局限性:** 尽管在训练过程中我们非常注重模型的安全性,尽力促使模型输出符合伦理和法律要求的文本,但受限于模型大小以及概率生成范式,模型可能会产生各种不符合预期的输出,例如回复内容包含偏见、歧视等有害内容,请勿传播这些内容。由于传播不良信息导致的任何后果,本项目不承担责任。
129
 
130
  ## 开源许可证