inclusionAI/Ling-Coder-lite

Model

Ling-Coder-lite

53

26 commits

2 linked in READMEs

updated Apr 22, 2025

See the code

README

Ling-Coder-lite

πŸ€– ModelScope πŸ€— Hugging Face πŸ–₯️ GitHub

Introduction

Ling-Coder-Lite is a MoE LLM provided and open-sourced by InclusionAI, which has 16.8B parameters with 2.75B activated parameters. This model demonstrates state-of-the-art performance on 12 coding benchmarks, while simultaneously offering competitive latency and throughput compared to code LLMs of similar size. In addition to open-sourcing the model itself, we also release a substantial amount of code-related data, including synthetic QA, SFT and DPO datasets. More details are described in the technique report Ling-Coder-TR.

Model Downloads

You can download the following table to see the various parameters for your use case. If you are located in mainland China, we also provide the model on modelscope.cn to speed up the download process.

Model#Total Params#Activated ParamsContext LengthDownload
Ling-Coder-lite-base16.8B2.75B16KπŸ€— HuggingFace
Ling-Coder-lite16.8B2.75B16KπŸ€— HuggingFace
Ling-Coder-lite-GPTQ-Int816.8B2.75B16KπŸ€— HuggingFace

Dataset Downloads

ModelSamplesDownload
Ling-Coder-SyntheticQA24MπŸ€— HuggingFace
Ling-Coder-SFT5MπŸ€— HuggingFace
Ling-Coder-DPO250KπŸ€— HuggingFace

Evaluation

Detailed evaluation results are reported in our technical report Ling-Coder-TR.

Quickstart

πŸ€— Hugging Face Transformers

Here is a code snippet to show you how to use the chat model with transformers:

from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "inclusionAI/Ling-Coder-lite"

model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True
)
tokenizer = AutoTokenizer.from_pretrained(
    model_name, 
    trust_remote_code=True
)

prompt = "Write a quick sort algorithm in python."
messages = [
    {"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)

generated_ids = model.generate(
    **model_inputs,
    max_new_tokens=512
)
generated_ids = [
    output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]

response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(response)

Deployment

Please refer to Github

License

This code repository is licensed under the MIT License.

Citation

@misc{codefuse2025samplemattersleveragingmixtureofexperts,
      title={Every Sample Matters: Leveraging Mixture-of-Experts and High-Quality Data for Efficient and Accurate Code LLM}, 
      author={Codefuse and Ling Team},
      year={2025},
      eprint={2503.17793},
      archivePrefix={arXiv},
      primaryClass={cs.LG},
      url={https://arxiv.org/abs/2503.17793}, 
}
bailing_moe
code
conversational
custom_code
safetensors
text-generation
transformers

Contributors

GoZion

20 commits

twelveand0

5 commits

nielsr

1 commits

inclusionAI/Ling-Coder-lite

Model

Ling-Coder-lite

53

26 commits

2 linked in READMEs

updated Apr 22, 2025

See the code

README

Ling-Coder-lite

πŸ€– ModelScope πŸ€— Hugging Face πŸ–₯️ GitHub

Introduction

Ling-Coder-Lite is a MoE LLM provided and open-sourced by InclusionAI, which has 16.8B parameters with 2.75B activated parameters. This model demonstrates state-of-the-art performance on 12 coding benchmarks, while simultaneously offering competitive latency and throughput compared to code LLMs of similar size. In addition to open-sourcing the model itself, we also release a substantial amount of code-related data, including synthetic QA, SFT and DPO datasets. More details are described in the technique report Ling-Coder-TR.

Model Downloads

You can download the following table to see the various parameters for your use case. If you are located in mainland China, we also provide the model on modelscope.cn to speed up the download process.

Model#Total Params#Activated ParamsContext LengthDownload
Ling-Coder-lite-base16.8B2.75B16KπŸ€— HuggingFace
Ling-Coder-lite16.8B2.75B16KπŸ€— HuggingFace
Ling-Coder-lite-GPTQ-Int816.8B2.75B16KπŸ€— HuggingFace

Dataset Downloads

ModelSamplesDownload
Ling-Coder-SyntheticQA24MπŸ€— HuggingFace
Ling-Coder-SFT5MπŸ€— HuggingFace
Ling-Coder-DPO250KπŸ€— HuggingFace

Evaluation

Detailed evaluation results are reported in our technical report Ling-Coder-TR.

Quickstart

πŸ€— Hugging Face Transformers

Here is a code snippet to show you how to use the chat model with transformers:

from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "inclusionAI/Ling-Coder-lite"

model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True
)
tokenizer = AutoTokenizer.from_pretrained(
    model_name, 
    trust_remote_code=True
)

prompt = "Write a quick sort algorithm in python."
messages = [
    {"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)

generated_ids = model.generate(
    **model_inputs,
    max_new_tokens=512
)
generated_ids = [
    output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]

response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(response)

Deployment

Please refer to Github

License

This code repository is licensed under the MIT License.

Citation

@misc{codefuse2025samplemattersleveragingmixtureofexperts,
      title={Every Sample Matters: Leveraging Mixture-of-Experts and High-Quality Data for Efficient and Accurate Code LLM}, 
      author={Codefuse and Ling Team},
      year={2025},
      eprint={2503.17793},
      archivePrefix={arXiv},
      primaryClass={cs.LG},
      url={https://arxiv.org/abs/2503.17793}, 
}
bailing_moe
code
conversational
custom_code
safetensors
text-generation
transformers

Contributors

GoZion

20 commits

twelveand0

5 commits

nielsr

1 commits