How to use from
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 "UCL-CSSB/PlasmidGPT-SFT" \
    --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": "UCL-CSSB/PlasmidGPT-SFT",
		"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 "UCL-CSSB/PlasmidGPT-SFT" \
        --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": "UCL-CSSB/PlasmidGPT-SFT",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Quick Links

PlasmidGPT-SFT

Supervised fine-tune of PlasmidGPT on a curated corpus of ~15k engineered E. coli plasmids from PlasmidScope and Addgene (Cunningham et al., 2025). Used as a baseline for the GRPO-trained PlasmidGPT-GRPO.

Quick start

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("UCL-CSSB/PlasmidGPT-SFT")
tokenizer = AutoTokenizer.from_pretrained("UCL-CSSB/PlasmidGPT-SFT")

input_ids = tokenizer("ATG", return_tensors="pt").input_ids
outputs = model.generate(input_ids, max_new_tokens=512, do_sample=True, temperature=1.0)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Citation

@article{cunningham2025plasmidsft,
  title   = {Generative design and construction of functional plasmids with a {DNA} language model},
  author  = {Cunningham, Angus G. and Dekker, Linda and Shcherbakova, Anastasiia and Barnes, Chris P.},
  journal = {bioRxiv},
  year    = {2025},
  doi     = {10.64898/2025.12.06.692736}
}
Downloads last month
10
Safetensors
Model size
0.2B params
Tensor type
F32
·
BOOL
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for UCL-CSSB/PlasmidGPT-SFT

Finetuned
(2)
this model
Finetunes
1 model

Collection including UCL-CSSB/PlasmidGPT-SFT