CoolFace
Modelpublic

SenseLLM/ReflectionCoder-CL-7B

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
1likes33downloads
Model Card

ReflectionCoder: Learning from Reflection Sequence for Enhanced One-off Code Generation

<p align="center"> <a href="https://arxiv.org/abs/2405.17057">๐Ÿ“„ Paper</a> โ€ข <a href="https://github.com/SenseLLM/ReflectionCoder">๐Ÿ  Repo</a> โ€ข <a href="https://huggingface.co/SenseLLM/ReflectionCoder-DS-33B">๐Ÿค– Models</a> โ€ข <a href="https://huggingface.co/datasets/SenseLLM/ReflectionSeq-GPT">๐Ÿ“š Datasets </a> </p>

Introduction

ReflectionCoder is a novel approach that effectively leverages reflection sequences constructed by integrating compiler feedback to improve one-off code generation performance. Please refer to our paper and repo for more details!

[image]

<hr>

Models

ModelCheckpointSizeHumanEval (+)MBPP (+)License
ReflectionCoder-CL-7B๐Ÿค— HF Link7B75.0 (68.9)72.2 (61.4)Llama2
ReflectionCoder-CL-34B๐Ÿค— HF Link34B70.7 (66.5)68.4 (56.6)Llama2
ReflectionCoder-DS-6.7B๐Ÿค— HF Link6.7B80.5 (74.4)81.5 (69.6)DeepSeek
ReflectionCoder-DS-33B๐Ÿค— HF Link33B82.9 (76.8)84.1 (72.0)DeepSeek

Datasets

DatasetLinkLicense
ReflectionSeq-GPT๐Ÿค— HF LinkLicense
ReflectionSeq-DS๐Ÿค— HF LinkLicense

How to Use

Chat Format

Following chat templates of most models, we use two special tokens to wrap the message of user and assistant, i.e., `<|user|>, <|assistant|>, and <|endofmessage|>. Furthermore, we use two special tokens to wrap the content of different blocks, *i.e.*, <|text|> and <|endofblock|>`. You can use the following code to prompt our ReflectionCoder.

python
import torch
from transformers import pipeline

chat = [
    {"role": "user", "content": "<Your code instruction here>"}
]

generator = pipeline(
    model="SenseLLM/ReflectionCoder-CL-7B",
    task="text-generation",
    torch_dtype=torch.bfloat16,
    device_map="auto",
)

result = generator(chat, max_length=128, num_return_sequences=1)

print(result)

Please refer to our GitHub Repo for more technical details.

Citation

If you find this repo useful for your research, please kindly cite our paper:

@misc{ren2024reflectioncoder,
    title={ReflectionCoder: Learning from Reflection Sequence for Enhanced One-off Code Generation}, 
    author={Houxing Ren and Mingjie Zhan and Zhongyuan Wu and Aojun Zhou and Junting Pan and Hongsheng Li},
    year={2024},
    eprint={2405.17057},
    archivePrefix={arXiv},
    primaryClass={cs.CL}
}

Acknowledgments

We thank the following amazing projects that truly inspired us: