Downloads · 30 days
16
2% of all-time downloads
UCL-CSSB/PlasmidGPT-SFT
PlasmidGPT-SFT is a text generation model from UCL-CSSB. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as mit.
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.
Downloads · 30 days
16
2% of all-time downloads
All-time downloads
805
Public
Parameters
160M
978 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors489 MB · 98%
How the weights are stored.
F32110M · 69%
From the Hugging Face model README
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.
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))
@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}
}