Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| EditCoder-6.7b-v1.Q2_K.gguf | Q2_K | 2.36GB |
| EditCoder-6.7b-v1.Q3_K_S.gguf | Q3_K_S | 2.75GB |
| EditCoder-6.7b-v1.Q3_K.gguf | Q3_K | 3.07GB |
| EditCoder-6.7b-v1.Q3_K_M.gguf | Q3_K_M | 3.07GB |
| EditCoder-6.7b-v1.Q3_K_L.gguf | Q3_K_L | 3.35GB |
| EditCoder-6.7b-v1.IQ4_XS.gguf | IQ4_XS | 3.4GB |
| EditCoder-6.7b-v1.Q4_0.gguf | Q4_0 | 3.56GB |
| EditCoder-6.7b-v1.IQ4_NL.gguf | IQ4_NL | 3.59GB |
| EditCoder-6.7b-v1.Q4_K_S.gguf | Q4_K_S | 3.59GB |
| EditCoder-6.7b-v1.Q4_K.gguf | Q4_K | 3.8GB |
| EditCoder-6.7b-v1.Q4_K_M.gguf | Q4_K_M | 3.8GB |
| EditCoder-6.7b-v1.Q4_1.gguf | Q4_1 | 3.95GB |
| EditCoder-6.7b-v1.Q5_0.gguf | Q5_0 | 4.33GB |
| EditCoder-6.7b-v1.Q5_K_S.gguf | Q5_K_S | 4.33GB |
| EditCoder-6.7b-v1.Q5_K.gguf | Q5_K | 4.46GB |
| EditCoder-6.7b-v1.Q5_K_M.gguf | Q5_K_M | 4.46GB |
| EditCoder-6.7b-v1.Q5_1.gguf | Q5_1 | 4.72GB |
| EditCoder-6.7b-v1.Q6_K.gguf | Q6_K | 5.15GB |
| EditCoder-6.7b-v1.Q8_0.gguf | Q8_0 | 6.67GB |
@inproceedings{cassano2023edit,
title={{Can It Edit? Evaluating the Ability of Large Language Models to Follow Code Editing Instructions}},
author={Federico Cassano and Luisa Li and Akul Sethi and Noah Shinn and Abby Brennan-Jones and Anton Lozhkov and Carolyn Jane Anderson and Arjun Guha},
booktitle={The First International Workshop on Large Language Model for Code},
year={2024},
url={https://arxiv.org/abs/2312.12450}
}## Code Before:
{before}
## Instruction:
{instruction}
## Code After:
{after}1def edit_prompt(old, instr):
2 before = f"""## Code Before:\n{old}\n"""
3 instr = f"""## Instruction:\n{instr}\n"""
4 after = f"""## Code After:\n"""
5 return before + instr + after