Model Description
Mellum-4b-sft-python is a fine-tuned version of JetBrains' first open-source large language model (LLM) optimized for code-related tasks.
Pre-trained on over 4 trillion tokens with a context window of 8192 tokens across multiple programming languages, and then fine-tuned, Mellum-4b-sft-python is tailored specifically for code completion in Python. The model follows a LLaMA-style architecture with 4 billion parameters, making it efficient for both cloud inference (e.g., via vLLM) and local deployment (e.g., using llama.cpp or Ollama).
Mellum was trained using Automatic Mixed Precision (AMP) with bf16 precision. The uploaded version on Hugging Face retains the bf16 format for public use.
Designed for integration into professional developer tooling (e.g., intelligent code suggestions in IDEs), AI-powered coding assistants, and research on code understanding and generation, Mellum is also well-suited for educational applications and fine-tuning experiments.
Limitations
- Biases: May reflect biases present in public codebases. For example it will likely produce code which is similar in style to the open-source repositories.
- Security: Code suggestions should not be assumed to be secure or free of vulnerabilities.
Sample Usage
Here is an example of how to run and sample from the model with additional files context and fill in the middle.
Fill in the middle with additional files as context generation
import json
from transformers import AutoTokenizer, AutoModelForCausalLM
example = """<filename>utils.py
def multiply(x, y):
return x * y
<filename>config.py
DEBUG = True
MAX_VALUE = 100
<filename>example.py
<fim_suffix>
# Test the function
result = calculate_sum(5, 10)
print(result)<fim_prefix>def calculate_sum(a, b):
<fim_middle>"""
tokenizer = AutoTokenizer.from_pretrained('JetBrains/Mellum-4b-sft-python')
model = AutoModelForCausalLM.from_pretrained('JetBrains/MMellum-4b-sft-python')
encoded_input = tokenizer(example, return_tensors='pt', return_token_type_ids=False)
out = model.generate(
**encoded_input,
max_new_tokens=100,
)
Citation
If you use this model, please cite:
@misc{Mellum-4b-base,
title = {Mellum-4b-base},
author = {Pavlichenko, Nikita and Nazarov, Iurii and Dolgov, Ivan and Garanina, Ekaterina and Lasocki, Karol and Reshetnikova, Julia and Boitsov, Sergei and Bondyrev, Ivan and Karaeva, Dariia and Sheptyakov, Maksim and Ustalov, Dmitry and Mukhin, Artem and Proshev, Semyon and Abramov, Nikita and Kolomyttseva, Olga and Lysaniuk, Kseniia and Zavidnyi, Ilia and Semenkin, Anton and Tankov, Vladislav and Sazanovich, Uladzislau},
year = {2025},
}
Contact
For questions, collaborations and requests reach us out via [email protected]
- Downloads last month
- 1,816
Model tree for JetBrains/Mellum-4b-sft-python
Base model
JetBrains/Mellum-4b-baseDatasets used to train JetBrains/Mellum-4b-sft-python
Collection including JetBrains/Mellum-4b-sft-python
Evaluation results
- EM on RepoBench 1.1 (Python)self-reported0.284
- EM ≤ 8k on RepoBench 1.1 (Python)self-reported0.299
- EM on RepoBench 1.1 (Python, 2k)self-reported0.292
- EM on RepoBench 1.1 (Python, 4k)self-reported0.306
- EM on RepoBench 1.1 (Python, 8k)self-reported0.298
- EM on RepoBench 1.1 (Python, 12k)self-reported0.268
- EM on RepoBench 1.1 (Python, 16k)self-reported0.254
- pass@1 on SAFIMself-reported0.421
- pass@1 on SAFIM (Algorithmic)self-reported0.332
- pass@1 on SAFIM (Control)self-reported0.361