mirror of
https://github.com/RosettaCommons/foundry.git
synced 2026-06-04 13:24:22 +08:00
* documentation for release draft start * trajectory.png * update readme to rf3-lab paths, annotate TODOs * add input_pdbs, demo.json * Update README.md example pngs * tasks pngs * Update README.md - restructure pngs and application links * Update README.md mc * Update README.md add ipynb kernel export instruction * mpnn all.ipynb * open and edit tutorial.zip * Update run_inf_tutorial.sh * remove outputs * cleanup * rename * soft code hbplus executable * rename modelforge to foundry (rfd3) README * fix: enabled running rfd3, mpnn inline * cleanup * remove todos, one remaining * clear outputs --------- Co-authored-by: Raktim Mitra <raktim@digs> Co-authored-by: Raktim Mitra <raktim@localhost> Co-authored-by: Rohith Krishna <rohith@localhost> Co-authored-by: Raktim Mitra <raktim@digs.ipd.uw.edu>
17 lines
386 B
Bash
Executable File
17 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
|
|
foundry=../../../../
|
|
|
|
export PYTHONPATH="$foundry/src:$foundry/models/rfd3/src/"
|
|
|
|
|
|
outdir=./na_tutorial_outputs/
|
|
rm $outdir/*
|
|
ckpt_path=rfd3_foundry_2025_12_01.ckpt
|
|
python $foundry/src/foundry/inference.py ckpt_path=$ckpt_path out_dir=$outdir inputs=./na_tutorial.json n_batches=2 diffusion_batch_size=3 cleanup_virtual_atoms=True
|
|
|
|
#some cleanup
|
|
rm *.hb2
|
|
rm *.pdb
|
|
rm *.dat
|