InternLM

Introduction

InternLM2-1.8B is the 1.8 billion parameter version of the second generation InternLM series. In order to facilitate user use and research, InternLM2-1.8B has three versions of open-source models. They are:

  • InternLM2-1.8B: Foundation models with high quality and high adaptation flexibility, which serve as a good starting point for downstream deep adaptations.
  • InternLM2-Chat-1.8B-SFT: Chat model after supervised fine-tuning (SFT) on InternLM2-1.8B.
  • InternLM2-Chat-1.8B: Further aligned on top of InternLM2-Chat-1.8B-SFT through online RLHF. InternLM2-Chat-1.8B exhibits better instruction following, chat experience, and function calling, which is recommended for downstream applications.

The InternLM2 has the following technical features:

  • Effective support for ultra-long contexts of up to 200,000 characters: The model nearly perfectly achieves "finding a needle in a haystack" in long inputs of 200,000 characters. It also leads among open-source models in performance on long-text tasks such as LongBench and L-Eval.
  • Comprehensive performance enhancement: Compared to the previous generation model, it shows significant improvements in various capabilities, including reasoning, mathematics, and coding.

InternLM2-1.8B

Performance Evaluation

We have evaluated InternLM2 on several important benchmarks using the open-source evaluation tool OpenCompass. Some of the evaluation results are shown in the table below. You are welcome to visit the OpenCompass Leaderboard for more evaluation results.

Dataset\Models InternLM2-1.8B InternLM2-Chat-1.8B-SFT InternLM2-7B InternLM2-Chat-7B
MMLU 46.9 47.1 65.8 63.7
AGIEval 33.4 38.8 49.9 47.2
BBH 37.5 35.2 65.0 61.2
GSM8K 31.2 39.7 70.8 70.7
MATH 5.6 11.8 20.2 23.0
HumanEval 25.0 32.9 43.3 59.8
MBPP(Sanitized) 22.2 23.2 51.8 51.4
  • The evaluation results were obtained from OpenCompass , and evaluation configuration can be found in the configuration files provided by OpenCompass.
  • The evaluation data may have numerical differences due to the version iteration of OpenCompass, so please refer to the latest evaluation results of OpenCompass.

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.

Import from Transformers

To load the InternLM2 1.8B Chat SFT model using Transformers, use the following code:

import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("internlm/internlm2-chat-1_8b-sft", trust_remote_code=True)
# Set `torch_dtype=torch.float16` to load model in float16, otherwise it will be loaded as float32 and cause OOM Error.
model = AutoModelForCausalLM.from_pretrained("internlm/internlm2-chat-1_8b-sft", torch_dtype=torch.float16, trust_remote_code=True).cuda()
model = model.eval()
response, history = model.chat(tokenizer, "hello", history=[])
print(response)
# Hello! How can I help you today?
response, history = model.chat(tokenizer, "please provide three suggestions about time management", history=history)
print(response)

The responses can be streamed using stream_chat:

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_path = "internlm/internlm2-chat-1_8b-sft"
model = AutoModelForCausalLM.from_pretrained(model_path, torch_dtype=torch.float16, trust_remote_code=True).cuda()
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)

model = model.eval()
length = 0
for response, history in model.stream_chat(tokenizer, "Hello", history=[]):
    print(response[length:], flush=True, end="")
    length = len(response)

Deployment

LMDeploy

LMDeploy is a toolkit for compressing, deploying, and serving LLM, developed by the MMRazor and MMDeploy teams.

pip install lmdeploy

You can run batch inference locally with the following python code:

import lmdeploy
pipe = lmdeploy.pipeline("internlm/internlm2-chat-1_8b-sft")
response = pipe(["Hi, pls intro yourself", "Shanghai is"])
print(response)

Or you can launch an OpenAI compatible server with the following command:

lmdeploy serve api_server internlm/internlm2-chat-1_8b-sft --model-name internlm2-chat-1_8b-sft --server-port 23333 

Then you can send a chat request to the server:

curl http://localhost:23333/v1/chat/completions \
    -H "Content-Type: application/json" \
    -d '{
    "model": "internlm2-chat-1_8b-sft",
    "messages": [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "Introduce deep learning to me."}
    ]
    }'

Find more details in the LMDeploy documentation

vLLM

Launch OpenAI compatible server with vLLM>=0.3.2:

pip install vllm
python -m vllm.entrypoints.openai.api_server --model internlm/internlm2-chat-1_8b-sft --served-model-name internlm2-chat-1_8b-sft --trust-remote-code

Then you can send a chat request to the server:

curl http://localhost:8000/v1/chat/completions \
    -H "Content-Type: application/json" \
    -d '{
    "model": "internlm2-chat-1_8b-sft",
    "messages": [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "Introduce deep learning to me."}
    ]
    }'

Find more details in the vLLM documentation

Open Source License

The code is licensed under Apache-2.0, while model weights are fully open for academic research and also allow free commercial usage. To apply for a commercial license, please fill in the application form (English)/็”ณ่ฏท่กจ๏ผˆไธญๆ–‡๏ผ‰. For other questions or collaborations, please contact internlm@pjlab.org.cn.

Citation

@misc{cai2024internlm2,
      title={InternLM2 Technical Report},
      author={Zheng Cai and Maosong Cao and Haojiong Chen and Kai Chen and Keyu Chen and Xin Chen and Xun Chen and Zehui Chen and Zhi Chen and Pei Chu and Xiaoyi Dong and Haodong Duan and Qi Fan and Zhaoye Fei and Yang Gao and Jiaye Ge and Chenya Gu and Yuzhe Gu and Tao Gui and Aijia Guo and Qipeng Guo and Conghui He and Yingfan Hu and Ting Huang and Tao Jiang and Penglong Jiao and Zhenjiang Jin and Zhikai Lei and Jiaxing Li and Jingwen Li and Linyang Li and Shuaibin Li and Wei Li and Yining Li and Hongwei Liu and Jiangning Liu and Jiawei Hong and Kaiwen Liu and Kuikun Liu and Xiaoran Liu and Chengqi Lv and Haijun Lv and Kai Lv and Li Ma and Runyuan Ma and Zerun Ma and Wenchang Ning and Linke Ouyang and Jiantao Qiu and Yuan Qu and Fukai Shang and Yunfan Shao and Demin Song and Zifan Song and Zhihao Sui and Peng Sun and Yu Sun and Huanze Tang and Bin Wang and Guoteng Wang and Jiaqi Wang and Jiayu Wang and Rui Wang and Yudong Wang and Ziyi Wang and Xingjian Wei and Qizhen Weng and Fan Wu and Yingtong Xiong and Chao Xu and Ruiliang Xu and Hang Yan and Yirong Yan and Xiaogui Yang and Haochen Ye and Huaiyuan Ying and Jia Yu and Jing Yu and Yuhang Zang and Chuyu Zhang and Li Zhang and Pan Zhang and Peng Zhang and Ruijie Zhang and Shuo Zhang and Songyang Zhang and Wenjian Zhang and Wenwei Zhang and Xingcheng Zhang and Xinyue Zhang and Hui Zhao and Qian Zhao and Xiaomeng Zhao and Fengzhe Zhou and Zaida Zhou and Jingming Zhuo and Yicheng Zou and Xipeng Qiu and Yu Qiao and Dahua Lin},
      year={2024},
      eprint={2403.17297},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}

็ฎ€ไป‹

ไนฆ็”Ÿยทๆตฆ่ฏญ-1.8B (InternLM2-1.8B) ๆ˜ฏ็ฌฌไบŒไปฃๆตฆ่ฏญๆจกๅž‹็ณปๅˆ—็š„18ไบฟๅ‚ๆ•ฐ็‰ˆๆœฌใ€‚ไธบไบ†ๆ–นไพฟ็”จๆˆทไฝฟ็”จๅ’Œ็ ”็ฉถ๏ผŒไนฆ็”Ÿยทๆตฆ่ฏญ-1.8B (InternLM2-1.8B) ๅ…ฑๆœ‰ไธ‰ไธช็‰ˆๆœฌ็š„ๅผ€ๆบๆจกๅž‹๏ผŒไป–ไปฌๅˆ†ๅˆซๆ˜ฏ๏ผš

  • InternLM2-1.8B: ๅ…ทๆœ‰้ซ˜่ดจ้‡ๅ’Œ้ซ˜้€‚ๅบ”็ตๆดปๆ€ง็š„ๅŸบ็ก€ๆจกๅž‹๏ผŒไธบไธ‹ๆธธๆทฑๅบฆ้€‚ๅบ”ๆไพ›ไบ†่‰ฏๅฅฝ็š„่ตท็‚นใ€‚
  • InternLM2-Chat-1.8B-SFT๏ผšๅœจ InternLM2-1.8B ไธŠ่ฟ›่กŒ็›‘็ฃๅพฎ่ฐƒ (SFT) ๅŽๅพ—ๅˆฐ็š„ๅฏน่ฏๆจกๅž‹ใ€‚
  • InternLM2-chat-1.8B๏ผš้€š่ฟ‡ๅœจ็บฟ RLHF ๅœจ InternLM2-Chat-1.8B-SFT ไน‹ไธŠ่ฟ›ไธ€ๆญฅๅฏน้ฝใ€‚ InternLM2-Chat-1.8B ่กจ็Žฐๅ‡บๆ›ดๅฅฝ็š„ๆŒ‡ไปค่ทŸ้šใ€่Šๅคฉไฝ“้ชŒๅ’Œๅ‡ฝๆ•ฐ่ฐƒ็”จ๏ผŒๆŽจ่ไธ‹ๆธธๅบ”็”จ็จ‹ๅบไฝฟ็”จใ€‚

InternLM2 ๆจกๅž‹ๅ…ทๅค‡ไปฅไธ‹็š„ๆŠ€ๆœฏ็‰น็‚น

  • ๆœ‰ๆ•ˆๆ”ฏๆŒ20ไธ‡ๅญ—่ถ…้•ฟไธŠไธ‹ๆ–‡๏ผšๆจกๅž‹ๅœจ20ไธ‡ๅญ—้•ฟ่พ“ๅ…ฅไธญๅ‡ ไนŽๅฎŒ็พŽๅœฐๅฎž็Žฐ้•ฟๆ–‡โ€œๅคงๆตทๆž้’ˆโ€๏ผŒ่€Œไธ”ๅœจ LongBench ๅ’Œ L-Eval ็ญ‰้•ฟๆ–‡ไปปๅŠกไธญ็š„่กจ็ŽฐไนŸ่พพๅˆฐๅผ€ๆบๆจกๅž‹ไธญ็š„้ข†ๅ…ˆๆฐดๅนณใ€‚
  • ็ปผๅˆๆ€ง่ƒฝๅ…จ้ขๆๅ‡๏ผšๅ„่ƒฝๅŠ›็ปดๅบฆ็›ธๆฏ”ไธŠไธ€ไปฃๆจกๅž‹ๅ…จ้ข่ฟ›ๆญฅ๏ผŒๅœจๆŽจ็†ใ€ๆ•ฐๅญฆใ€ไปฃ็ ็ญ‰ๆ–น้ข็š„่ƒฝๅŠ›ๆๅ‡ๆ˜พ่‘—ใ€‚

InternLM2-1.8B

ๆ€ง่ƒฝ่ฏ„ๆต‹

ๆˆ‘ไปฌไฝฟ็”จๅผ€ๆบ่ฏ„ๆต‹ๅทฅๅ…ท OpenCompass ๅฏน InternLM2 ๅœจๅ‡ ไธช้‡่ฆ็š„่ฏ„ๆต‹้›†่ฟ›่กŒไบ†่ฏ„ๆต‹ ๏ผŒ้ƒจๅˆ†่ฏ„ๆต‹็ป“ๆžœๅฆ‚ไธ‹่กจๆ‰€็คบ๏ผŒๆฌข่ฟŽ่ฎฟ้—ฎ OpenCompass ๆฆœๅ• ่Žทๅ–ๆ›ดๅคš็š„่ฏ„ๆต‹็ป“ๆžœใ€‚

่ฏ„ๆต‹้›† InternLM2-1.8B InternLM2-Chat-1.8B-SFT InternLM2-7B InternLM2-Chat-7B
MMLU 46.9 47.1 65.8 63.7
AGIEval 33.4 38.8 49.9 47.2
BBH 37.5 35.2 65.0 61.2
GSM8K 31.2 39.7 70.8 70.7
MATH 5.6 11.8 20.2 23.0
HumanEval 25.0 32.9 43.3 59.8
MBPP(Sanitized) 22.2 23.2 51.8 51.4
  • ไปฅไธŠ่ฏ„ๆต‹็ป“ๆžœๅŸบไบŽ OpenCompass ่Žทๅพ—๏ผˆ้ƒจๅˆ†ๆ•ฐๆฎๆ ‡ๆณจ*ไปฃ่กจๆ•ฐๆฎๆฅ่‡ชๅŽŸๅง‹่ฎบๆ–‡๏ผ‰๏ผŒๅ…ทไฝ“ๆต‹่ฏ•็ป†่Š‚ๅฏๅ‚่ง OpenCompass ไธญๆไพ›็š„้…็ฝฎๆ–‡ไปถใ€‚
  • ่ฏ„ๆต‹ๆ•ฐๆฎไผšๅ›  OpenCompass ็š„็‰ˆๆœฌ่ฟญไปฃ่€Œๅญ˜ๅœจๆ•ฐๅ€ผๅทฎๅผ‚๏ผŒ่ฏทไปฅ OpenCompass ๆœ€ๆ–ฐ็‰ˆ็š„่ฏ„ๆต‹็ป“ๆžœไธบไธปใ€‚

ๅฑ€้™ๆ€ง๏ผš ๅฐฝ็ฎกๅœจ่ฎญ็ปƒ่ฟ‡็จ‹ไธญๆˆ‘ไปฌ้žๅธธๆณจ้‡ๆจกๅž‹็š„ๅฎ‰ๅ…จๆ€ง๏ผŒๅฐฝๅŠ›ไฟƒไฝฟๆจกๅž‹่พ“ๅ‡บ็ฌฆๅˆไผฆ็†ๅ’Œๆณ•ๅพ‹่ฆๆฑ‚็š„ๆ–‡ๆœฌ๏ผŒไฝ†ๅ—้™ไบŽๆจกๅž‹ๅคงๅฐไปฅๅŠๆฆ‚็އ็”Ÿๆˆ่Œƒๅผ๏ผŒๆจกๅž‹ๅฏ่ƒฝไผšไบง็”Ÿๅ„็งไธ็ฌฆๅˆ้ข„ๆœŸ็š„่พ“ๅ‡บ๏ผŒไพ‹ๅฆ‚ๅ›žๅคๅ†…ๅฎนๅŒ…ๅซๅ่งใ€ๆญง่ง†็ญ‰ๆœ‰ๅฎณๅ†…ๅฎน๏ผŒ่ฏทๅ‹ฟไผ ๆ’ญ่ฟ™ไบ›ๅ†…ๅฎนใ€‚็”ฑไบŽไผ ๆ’ญไธ่‰ฏไฟกๆฏๅฏผ่‡ด็š„ไปปไฝ•ๅŽๆžœ๏ผŒๆœฌ้กน็›ฎไธๆ‰ฟๆ‹…่ดฃไปปใ€‚

้€š่ฟ‡ Transformers ๅŠ ่ฝฝ

้€š่ฟ‡ไปฅไธ‹็š„ไปฃ็ ๅŠ ่ฝฝ InternLM2 1.8B Chat SFT ๆจกๅž‹

import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("internlm/internlm2-chat-1_8b-sft", trust_remote_code=True)
# `torch_dtype=torch.float16` ๅฏไปฅไปคๆจกๅž‹ไปฅ float16 ็ฒพๅบฆๅŠ ่ฝฝ๏ผŒๅฆๅˆ™ transformers ไผšๅฐ†ๆจกๅž‹ๅŠ ่ฝฝไธบ float32๏ผŒๅฏผ่‡ดๆ˜พๅญ˜ไธ่ถณ
model = AutoModelForCausalLM.from_pretrained("internlm/internlm2-chat-1_8b-sft", torch_dtype=torch.float16, trust_remote_code=True).cuda()
model = model.eval()
response, history = model.chat(tokenizer, "ไฝ ๅฅฝ", history=[])
print(response)
# ไฝ ๅฅฝ๏ผๆœ‰ไป€ไนˆๆˆ‘ๅฏไปฅๅธฎๅŠฉไฝ ็š„ๅ—๏ผŸ
response, history = model.chat(tokenizer, "่ฏทๆไพ›ไธ‰ไธช็ฎก็†ๆ—ถ้—ด็š„ๅปบ่ฎฎใ€‚", history=history)
print(response)

ๅฆ‚ๆžœๆƒณ่ฟ›่กŒๆตๅผ็”Ÿๆˆ๏ผŒๅˆ™ๅฏไปฅไฝฟ็”จ stream_chat ๆŽฅๅฃ๏ผš

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_path = "internlm/internlm2-chat-1_8b-sft"
model = AutoModelForCausalLM.from_pretrained(model_path, torch_dype=torch.float16, trust_remote_code=True).cuda()
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)

model = model.eval()
length = 0
for response, history in model.stream_chat(tokenizer, "ไฝ ๅฅฝ", history=[]):
    print(response[length:], flush=True, end="")
    length = len(response)

้ƒจ็ฝฒ

LMDeploy

LMDeploy ็”ฑ MMDeploy ๅ’Œ MMRazor ๅ›ข้˜Ÿ่”ๅˆๅผ€ๅ‘๏ผŒๆ˜ฏๆถต็›–ไบ† LLM ไปปๅŠก็š„ๅ…จๅฅ—่ฝป้‡ๅŒ–ใ€้ƒจ็ฝฒๅ’ŒๆœๅŠก่งฃๅ†ณๆ–นๆกˆใ€‚

pip install lmdeploy

ไฝ ๅฏไปฅไฝฟ็”จไปฅไธ‹ python ไปฃ็ ่ฟ›่กŒๆœฌๅœฐๆ‰น้‡ๆŽจ็†:

import lmdeploy
pipe = lmdeploy.pipeline("internlm/internlm2-chat-1_8b-sft")
response = pipe(["Hi, pls intro yourself", "Shanghai is"])
print(response)

ๆˆ–่€…ไฝ ๅฏไปฅไฝฟ็”จไปฅไธ‹ๅ‘ฝไปคๅฏๅŠจๅ…ผๅฎน OpenAI API ็š„ๆœๅŠก:

lmdeploy serve api_server internlm/internlm2-chat-1_8b-sft --server-port 23333

็„ถๅŽไฝ ๅฏไปฅๅ‘ๆœๅŠก็ซฏๅ‘่ตทไธ€ไธช่Šๅคฉ่ฏทๆฑ‚:

curl http://localhost:23333/v1/chat/completions \
    -H "Content-Type: application/json" \
    -d '{
    "model": "internlm2-chat-1_8b-sft",
    "messages": [
    {"role": "system", "content": "ไฝ ๆ˜ฏไธชๅ‹ๅ–„็š„AIๅŠฉๆ‰‹ใ€‚"},
    {"role": "user", "content": "ไป‹็ปไธ€ไธ‹ๆทฑๅบฆๅญฆไน ใ€‚"}
    ]
    }'

ๆ›ดๅคšไฟกๆฏ่ฏทๆŸฅ็œ‹ LMDeploy ๆ–‡ๆกฃ

vLLM

ไฝฟ็”จvLLM>=0.3.2ๅฏๅŠจๅ…ผๅฎน OpenAI API ็š„ๆœๅŠก:

pip install vllm
python -m vllm.entrypoints.openai.api_server --model internlm/internlm2-chat-1_8b-sft --trust-remote-code

็„ถๅŽไฝ ๅฏไปฅๅ‘ๆœๅŠก็ซฏๅ‘่ตทไธ€ไธช่Šๅคฉ่ฏทๆฑ‚:

curl http://localhost:8000/v1/chat/completions \
    -H "Content-Type: application/json" \
    -d '{
    "model": "internlm2-chat-1_8b-sft",
    "messages": [
    {"role": "system", "content": "ไฝ ๆ˜ฏไธชๅ‹ๅ–„็š„AIๅŠฉๆ‰‹ใ€‚"},
    {"role": "user", "content": "ไป‹็ปไธ€ไธ‹ๆทฑๅบฆๅญฆไน ใ€‚"}
    ]
    }'

ๆ›ดๅคšไฟกๆฏ่ฏทๆŸฅ็œ‹ vLLM ๆ–‡ๆกฃ

ๅผ€ๆบ่ฎธๅฏ่ฏ

ๆœฌไป“ๅบ“็š„ไปฃ็ ไพ็…ง Apache-2.0 ๅ่ฎฎๅผ€ๆบใ€‚ๆจกๅž‹ๆƒ้‡ๅฏนๅญฆๆœฏ็ ”็ฉถๅฎŒๅ…จๅผ€ๆ”พ๏ผŒไนŸๅฏ็”ณ่ฏทๅ…่ดน็š„ๅ•†ไธšไฝฟ็”จๆŽˆๆƒ๏ผˆ็”ณ่ฏท่กจ๏ผ‰ใ€‚ๅ…ถไป–้—ฎ้ข˜ไธŽๅˆไฝœ่ฏท่”็ณป internlm@pjlab.org.cnใ€‚

ๅผ•็”จ

@misc{cai2024internlm2,
      title={InternLM2 Technical Report},
      author={Zheng Cai and Maosong Cao and Haojiong Chen and Kai Chen and Keyu Chen and Xin Chen and Xun Chen and Zehui Chen and Zhi Chen and Pei Chu and Xiaoyi Dong and Haodong Duan and Qi Fan and Zhaoye Fei and Yang Gao and Jiaye Ge and Chenya Gu and Yuzhe Gu and Tao Gui and Aijia Guo and Qipeng Guo and Conghui He and Yingfan Hu and Ting Huang and Tao Jiang and Penglong Jiao and Zhenjiang Jin and Zhikai Lei and Jiaxing Li and Jingwen Li and Linyang Li and Shuaibin Li and Wei Li and Yining Li and Hongwei Liu and Jiangning Liu and Jiawei Hong and Kaiwen Liu and Kuikun Liu and Xiaoran Liu and Chengqi Lv and Haijun Lv and Kai Lv and Li Ma and Runyuan Ma and Zerun Ma and Wenchang Ning and Linke Ouyang and Jiantao Qiu and Yuan Qu and Fukai Shang and Yunfan Shao and Demin Song and Zifan Song and Zhihao Sui and Peng Sun and Yu Sun and Huanze Tang and Bin Wang and Guoteng Wang and Jiaqi Wang and Jiayu Wang and Rui Wang and Yudong Wang and Ziyi Wang and Xingjian Wei and Qizhen Weng and Fan Wu and Yingtong Xiong and Chao Xu and Ruiliang Xu and Hang Yan and Yirong Yan and Xiaogui Yang and Haochen Ye and Huaiyuan Ying and Jia Yu and Jing Yu and Yuhang Zang and Chuyu Zhang and Li Zhang and Pan Zhang and Peng Zhang and Ruijie Zhang and Shuo Zhang and Songyang Zhang and Wenjian Zhang and Wenwei Zhang and Xingcheng Zhang and Xinyue Zhang and Hui Zhao and Qian Zhao and Xiaomeng Zhao and Fengzhe Zhou and Zaida Zhou and Jingming Zhuo and Yicheng Zou and Xipeng Qiu and Yu Qiao and Dahua Lin},
      year={2024},
      eprint={2403.17297},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}
Downloads last month
127
Safetensors
Model size
2B params
Tensor type
BF16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for internlm/internlm2-chat-1_8b-sft

Quantizations
3 models

Space using internlm/internlm2-chat-1_8b-sft 1

Paper for internlm/internlm2-chat-1_8b-sft