Views
No views yet
ConfRover-base-20M-v1.0| Model ID | ConfRover-base-20M-v1.0 |
|---|---|
| Variant | base |
| Size | 20M |
| Version | v1.0 |
| Recommend | For forward simulation and iid sampling tasks |
| License | Apache-2.0 |
1from confrover import ConfRover
2
3model = ConfRover.from_pretrained(<model_name>)
4
5model.to("cuda")
6
7model.generate(
8 case_id=<case_name>,
9 seqres=<amino_acid_sequence>,
10 output_dir=</path/to/save/output>,
11 task_mode=<"forward"|"iid"|"interp">,
12 n_replicates=<int>, # number of replicated trajectories (forward and interp) or total number of conformation samples (iid)
13 n_frames=<int>, # number of frames in the trajectory, including the conditioning frames.
14 stride_in_10ps=256, # time interval between frames in the unit of 10 ps.
15 conditions=..., # information for conditioning frames for forward simulation and interp. See `ConfRover.generate` for more details.
16)1@article{confrover2025,
2 title={Simultaneous Modeling of Protein Conformation and Dynamics via Autoregression},
3 author={Shen, Yuning and Wang, Lihao and Yuan, Huizhuo and Wang, Yan and Yang, Bangji and Gu, Quanquan},
4 journal={arXiv preprint arXiv:2505.17478},
5 year={2025}
6}