ProtGPT3-1.3B is a single-sequence autoregressive protein language model for protein sequence generation. It is part of the ProtGPT3 family, an open-source suite of promptable and aligned protein language models ranging from 112M to 10B parameters. ProtGPT3 models use a causal Mixtral-style Mixture-of-Experts architecture and are trained for causal language modeling on protein sequences.
The single-sequence ProtGPT3 models can generate proteins in either N-to-C or C-to-N direction using special directional tokens. The model is intended for unconditional or prefix-conditioned protein sequence generation and can be used as a base model for downstream protein design workflows.
Also consider using the ProtGPT3-1.3B -dpo version for an equivalent model size, but with improved sequence generation.
Model Modalities
N-to-C vs C-to-N:ProtGPT3-1.3B has been trained to process single protein sequences in both N-to-C and C-to-N directions, via two special "directional" tokens, "1" for N-to-C and "2" for C-to-N which which should be placed at the start of the protein sequence (i.e., after the BOS toke) to select the direction.
We provide some examples below.
Uses
How to Get Started with the Model
Install dependencies:
pip install transformers accelerate torch
Load the model and tokenizer:
python
1import torch
2from transformers import AutoTokenizer, AutoModelForCausalLM
34model_id ="AI4PD/ProtGPT3-1.3B"# Replace with the final checkpoint name56# Load tokenizer for generation7tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True,add_bos_token=True, add_eos_token=False, padding_side="left")89model = AutoModelForCausalLM.from_pretrained(10 model_id,11 torch_dtype=torch.bfloat16,12 device_map="auto",13 trust_remote_code=True,14)1516model.eval()
Uncoditional generate of protein sequences
python
1import torch
23prompt =""# Optionally provide an amino-acid prefix or model-specific direction45inputs = tokenizer(prompt, return_tensors="pt").to(model.device)67with torch.no_grad():8 output_ids = model.generate(9 inputs["input_ids"],10 max_new_tokens=512,11 do_sample=True,12 temperature=0.8,13 top_p=0.9,14 eos_token_id=tokenizer.eos_token_id,15 pad_token_id=tokenizer.pad_token_id,16 num_return_sequences=20,# set to desired number of protein sequences to be generated in parallel17)1819sequence = tokenizer.decode(output_ids[0], skip_special_tokens=True)20print(sequence)# output includes directional token "1" or "2" to denote if sequence was generated N-to-C or C-to-N
Generate from an amino-acid prefix
python
1import torch
23# forward N-to-C generation with special token "1" 4prefix ="1MKT"# use special token "2" instead of "1" for reverse C-to-N generation56inputs = tokenizer(prefix, return_tensors="pt").to(model.device)78with torch.no_grad():9 output_ids = model.generate(10 inputs["input_ids"],11 max_new_tokens=256,12 do_sample=True,13 temperature=0.8,14 top_p=0.9,15 eos_token_id=tokenizer.eos_token_id,16 pad_token_id=tokenizer.eos_token_id,17 num_return_sequences=20,# set to desired number of protein sequences to be generated in parallel18)1920sequence = tokenizer.decode(output_ids[0], skip_special_tokens=True)21print(sequence)
Batch generation
python
1import torch
23prompts =[4"",5"1MKT",# N-to-C generation6"2MAV",# C-to-N generation7]89inputs = tokenizer(10 prompts,11 return_tensors="pt",12 padding=True,13).to(model.device)1415with torch.no_grad():16 output_ids = model.generate(17 inputs["input_ids"],18 max_new_tokens=256,19 do_sample=True,20 temperature=0.8,21 top_p=0.9,22 eos_token_id=tokenizer.eos_token_id,23 pad_token_id=tokenizer.bos_token_id,24 num_return_sequences=20,# set to desired number of batch sequences to be generated in parallel25)2627sequences = tokenizer.batch_decode(output_ids, skip_special_tokens=True)2829for sequence in sequences:30print(sequence)
Downstream Use
The model may be fine-tuned or incorporated into protein design workflows, including family-specific generation, protein variant generation, and computational screening pipelines.
Out-of-Scope Use
The model should not be used as the sole basis for experimental, clinical, environmental, or safety-critical decisions. Generated proteins require downstream computational and experimental validation. The model is not guaranteed to generate functional, soluble, safe, or synthesizable proteins.
Bias, Risks, and Limitations
ProtGPT3-1.3B learns from public protein sequence datasets and may reproduce biases present in those datasets. Generated sequences may be low-complexity, nonfunctional, unstable, insoluble, or biologically implausible. Protein generation models may also present dual-use risks if used irresponsibly.
Recommendations
Users should apply appropriate computational filters, expert review, and experimental validation before using generated sequences. Users should also consider responsible-use practices for generative protein design.
Technical Specifications
Model Architecture and Objective
ProtGPT3-1.3B is a decoder-only causal language model using a Mixtral-style sparse Mixture-of-Experts architecture. It was trained with a causal language modeling objective on protein sequences.
Citation
BibTeX:
bibtex
1@article{garibbo2026protgpt3,
2 title={ProtGPT3: an Open-source family of Promptable and Aligned Protein Language Models},
3 author={Garibbo, Michele and Boxo Corominas, Gerard and Stocco, Filippo and Illanes Vicioso, Ramiro and Middendorf, Lasse and Ferruz, Noelia},
4 journal={bioRxiv},
5 pages={2026--06},
6 year={2026},
7 publisher={Cold Spring Harbor Laboratory}
8}
More Information
All models and code are released through the Hugging Face ecosystem and accompanying code repository.