Instructions to use thealper2/t5-base-code-summarization with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use thealper2/t5-base-code-summarization with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="thealper2/t5-base-code-summarization")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("thealper2/t5-base-code-summarization") model = AutoModelForSeq2SeqLM.from_pretrained("thealper2/t5-base-code-summarization", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use thealper2/t5-base-code-summarization with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "thealper2/t5-base-code-summarization" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thealper2/t5-base-code-summarization", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/thealper2/t5-base-code-summarization
- SGLang
How to use thealper2/t5-base-code-summarization with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "thealper2/t5-base-code-summarization" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thealper2/t5-base-code-summarization", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "thealper2/t5-base-code-summarization" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thealper2/t5-base-code-summarization", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use thealper2/t5-base-code-summarization with Docker Model Runner:
docker model run hf.co/thealper2/t5-base-code-summarization
t5-base-code-summarization
google-t5/t5-base (223M parameters) fine-tuned to
generate a one-sentence natural-language summary (docstring) for a Python function.
- Input:
"summarize code: " + <python source code>(the prefix is required) - Output: a short English summary of what the function does
- Language: Python only
Usage
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
repo = "thealper2/t5-base-code-summarization"
tokenizer = AutoTokenizer.from_pretrained(repo)
model = AutoModelForSeq2SeqLM.from_pretrained(repo)
code = """def calculate_average(numbers):
return sum(numbers) / len(numbers)"""
inputs = tokenizer("summarize code: " + code, return_tensors="pt",
truncation=True, max_length=512)
# Decoding settings (beam search etc.) are loaded from generation_config.json.
output = model.generate(**inputs)
print(tokenizer.decode(output[0], skip_special_tokens=True))
Evaluation
Scores on 5,000 held-out test functions, never seen during training or model selection. Validation scores are from the in-training evaluation subset.
| Metric | Test | Validation |
|---|---|---|
| BLEU (sacreBLEU, corpus) | 3.92 | 4.69 |
| Smoothed BLEU-4 (sentence avg.) | 6.65 | 7.21 |
| ROUGE-1 | 36.03 | 37.42 |
| ROUGE-2 | 12.61 | 14.14 |
| ROUGE-L | 32.97 | 34.02 |
| Semantic similarity (MiniLM cosine) | 54.02 | – |
| Avg. generated length (words) | 6.17 | 5.92 |
| Avg. reference length (words) | 10.02 | 9.90 |
BLEU/ROUGE reward lexical overlap with a single reference docstring, so a correct summary phrased differently scores low. Read them alongside the examples below. CodeBLEU is not reported: it scores generated code, while this model generates English.
Examples from the test split
def validate_flavor_data(self, expected, actual):
self.log.debug('Validating flavor data...')
self.log.debug('actual: {}'.format(repr(actual)))
act = [a.name for a in actual]
return self._validate_list_data(expected, act)
- Reference: Validate flavor data.
- Generated: Validate flavor data.
def check(text):
err = "hedging.misc"
msg = "Hedging. Just say it."
narcissism = [
"I would argue that",
", so to speak",
"to a certain degree",
]
return existence_check(text, narcissism, err, msg)
- Reference: Suggest the preferred forms.
- Generated: Check if hedging is valid.
def on_source_directory_chooser_clicked(self):
title = self.tr('Set the source directory for script and scenario')
self.choose_directory(self.source_directory, title)
- Reference: Autoconnect slot activated when tbSourceDir is clicked.
- Generated: Sets the source directory for script and scenario.
Training data
sentence-transformers/codesearchnet (pair config),
code → comment pairs. The dataset mixes about six languages without a label, so
Python functions were detected by parsing with ast. Leading docstrings were stripped
from the code (otherwise the target leaks into the input), summaries were cut to their
leading prose, and broken, non-English and boilerplate rows were dropped.
| Split | Examples |
|---|---|
| train | 20,000 |
| validation | 5,000 |
| test | 5,000 |
Training procedure
| Hyper-parameter | Value |
|---|---|
| Learning rate | 0.0003 |
| Scheduler / warmup | linear / 0.03 |
| Optimizer | adamw_torch |
| Effective batch size | 32 (per-device 8 × accumulation 4) |
| Epochs | 3.0 |
| Weight decay | 0.01 |
| Max source / target length | 512 / 64 tokens |
| Precision | bf16 |
| Gradient checkpointing | True |
| Seed | 42 |
| Training time | 50.49 min |
| Peak GPU memory | 4.17 GB |
Best checkpoint selected on validation ROUGE-L with early stopping.
Generation
num_beams=4, max_length=64, min_length=4, length_penalty=1.0, no_repeat_ngram_size=3, early_stopping=True, do_sample=False
Limitations
- Trained on Python only; other languages are out of distribution.
- Inputs longer than 512 tokens are truncated, so the end of long functions is not seen.
- Summaries tend to be shorter and more generic than human-written docstrings.
- Docstrings in CodeSearchNet are noisy; the model inherits their style and errors.
- Downloads last month
- 273
Model tree for thealper2/t5-base-code-summarization
Base model
google-t5/t5-baseDataset used to train thealper2/t5-base-code-summarization
Evaluation results
- BLEU on CodeSearchNet (Python, held-out split)self-reported3.920
- Smoothed BLEU-4 on CodeSearchNet (Python, held-out split)self-reported6.650
- ROUGE-1 on CodeSearchNet (Python, held-out split)self-reported36.030
- ROUGE-2 on CodeSearchNet (Python, held-out split)self-reported12.610
- ROUGE-L on CodeSearchNet (Python, held-out split)self-reported32.970