De novo Design of Biomolecular Interactions with RFdiffusion3
Get Started
- Install RFdiffusion3. See Main README for instructions how to install all models to run full pipeline (recommended). If you have already installed all the models skip here.
pip install rc-foundry[rfd3]
- Download checkpoint to your desired checkpoint location.
foundry install rfd3 --checkpoint-dir /path/to/ckpt/dir
Run Inference
cur_ckpt=rfd3_foundry_2025_12_01.ckpt
To run inference
rfd3 design out_dir=logs/inference_outs/demo/0 inputs=models/rfd3/docs/demo.json ckpt_path=$cur_ckpt
Note
This demo will take a very long amount of time if run on a CPU instead of a GPU. On a GPU, this should take on the order of 10 minutes.
Additional args here are added for verbosity, aligning trajectory structures, printing the config and dumping trajectories are turned off by default.
The output directory will automatically be created.
For full details on how to specify inputs, see the input specification documentation. You can also see models/rfd3/configs/inference_engine/rfdiffusion3.yaml.
Further example jsons for different applications
Nucleic acid binder design
|
Small molecule binder design
|
Protein binder design
|
Enzyme design
|
Symmetric design
|
Installation and Setup for Development and Training
A. Installation using uv
git clone https://github.com/RosettaCommons/foundry.git \
&& cd foundry \
&& uv python install 3.12 \
&& uv venv --python 3.12 \
&& source .venv/bin/activate \
&& uv pip install -e ".[rfd3]"
Note
optionally make installed venv available as ipynb kernel (helpful for running examples in
examples/all.ipynb)python -m ipykernel install --user --name=foundry --display-name "foundry"Download checkpoints.
foundry install rfd3 --checkpoint-dir /path/to/checkpoint/
Inference:
cur_ckpt=rfd3_foundry_2025_12_01.ckpt
To run inference
rfd3 design out_dir=logs/inference_outs/demo/0 inputs=models/rfd3/docs/demo.json ckpt_path=$cur_ckpt dump_trajectories=True
Note
This demo will take a very long amount of time if run on a CPU instead of a GPU. On a GPU, this should take on the order of 10 minutes.
The output directory will automatically be created.
For full details on how to specify inputs, see the input specification documentation. You can also see models/rfd3/configs/inference_engine/rfdiffusion3.yaml.
Training:
We make available to the community not only the weights to run RFdiffusion3 but also the complete training code, easily extendable to additional use cases. Any AtomWorks-compatible dataset (and thus, any collection of structure files) can be readily incorporated and used for training or fine-tuning.
Dataset Configuration
PDB Training
To train on the PDB:
- Set up PDB and CCD mirrors as described in the AtomWorks documentation
- Update the path configs to point to the correct base directories for the metadata parquets
- Set the
PDB_MIRRORandCCD_PATHvariables in your.envfile
Custom Datasets
RFdiffusion3 supports arbitrary datasets of structure files for training and fine-tuning via AtomWorks. See the AtomWorks dataset documentation for details on creating custom datasets.
Running Training
After setting up Hydra configs, launch a training run:
uv run python models/rfd3/src/rfd3/train.py experiment=pretrain
See the path configs to customize data input and log output directories.
Logging Configuration
Training runs support logging via Weights & Biases. To enable wandb logging:
uv run python models/rfd3/src/rfd3/train.py experiment=pretrain logger=wandb
To run training without wandb (default):
uv run python models/rfd3/src/rfd3/train.py experiment=pretrain logger=csv
Install HBPLUS for training with hydrogen bond conditioning:
- Download hbplus from here: https://www.ebi.ac.uk/thornton-srv/software/HBPLUS/download.html (available for free)
- Follow the installation instruction here: https://www.ebi.ac.uk/thornton-srv/software/HBPLUS/install.html
- Update
HBPLUS_PATHinfoundry/.envfile with the path to yourhbplusexecutable.
Distributed Training
To use distributed training, you could use a command such as this (we use Lightning Fabric to handle ddp)
EFFECTIVE_BATCH_SIZE=16
DEVICES_PER_NODE= #INSERT NUMBER OF DEVICES PER NODE
NNODES = # INSERT NUMBER OF NODES
GRAD_ACCUM_STEPS=$((EFFECTIVE_BATCH_SIZE / (DEVICES_PER_NODE * NNODES)))
uv run python models/rfd3/src/rfd3/train.py \
experiment=pretrain \
trainer.devices_per_node=$DEVICES_PER_NODE \
trainer.num_nodes=$SLURM_NNODES \
trainer.grad_accum_steps=$GRAD_ACCUM_STEPS"
Notably, fabric must receive devices_per_node and the number of nodes (num_nodes) you're training on.
Dataset Paths: See the paths configs to customize the paths where data is read from and where logs are written. There is also a wandb config that can be enabled if you want to log training through wandb.
Hydra configs and experiments: In the example above, the experiment argument is a hydra-native argument. For RFD3, it will look for config overrides in /models/rfd3/configs/experiment/<experiment-name>.yaml and apply them on top of the base configs
Conditioning during training: RFD3 is trained on a multitude of conditioning tasks, and does so by randomly 'creating problems' for it to solve during training. For example, for a random training example it gets a random set of tokens to be 'motif tokens', then subsets those to whether specific atoms should be fixed, and further subsets the information to whether, say, sequence, coordinates or the sequence index should be fixed. It's pretty complicated to evaluate and it's more of an art than a science how this was put together; which means there's likely some optimization further work can do!
In models/rfd3/configs/datasets/design_base.yaml there's the shared configs for all datasets under global_transform_args. The dials that control the conditioning described above go under training_conditions, where for example tipatom - a specific preset conditioning sampler which more frequently fixes few tokens with few atoms - and others can be found.
Training with WandB: We strongly recommend tracking your runs via wandb. To use it, simply have your WANDB_API_KEY set and use the wandb logger. For more details see here
Citation
If you use this code or data in your work, please consider citing:
@article {butcher2025_rfdiffusion3,
author = {Butcher, Jasper and Krishna, Rohith and Mitra, Raktim and Brent, Rafael Isaac and Li, Yanjing and Corley, Nathaniel and Kim, Paul T and Funk, Jonathan and Mathis, Simon Valentin and Salike, Saman and Muraishi, Aiko and Eisenach, Helen and Thompson, Tuscan Rock and Chen, Jie and Politanska, Yuliya and Sehgal, Enisha and Coventry, Brian and Zhang, Odin and Qiang, Bo and Didi, Kieran and Kazman, Maxwell and DiMaio, Frank and Baker, David},
title = {De novo Design of All-atom Biomolecular Interactions with RFdiffusion3},
elocation-id = {2025.09.18.676967},
year = {2025},
doi = {10.1101/2025.09.18.676967},
publisher = {Cold Spring Harbor Laboratory},
URL = {https://www.biorxiv.org/content/early/2025/11/19/2025.09.18.676967},
eprint = {https://www.biorxiv.org/content/early/2025/11/19/2025.09.18.676967.full.pdf},
journal = {bioRxiv}
}





