ZhiyuanChen commited on
Commit
e8b4814
·
verified ·
1 Parent(s): 1ce4e36

Use pipeline-first OFoldX usage

Browse files
Files changed (1) hide show
  1. README.md +5 -0
README.md CHANGED
@@ -98,6 +98,11 @@ pip install ofoldx
98
  Load the artifact from `oteam/rfdiffusion-complex-base` using the OFoldX `Auto*` interface:
99
 
100
  ```python
 
 
 
 
 
101
  from ofoldx import AutoModel
102
 
103
  model = AutoModel.from_pretrained("oteam/rfdiffusion-complex-base")
 
98
  Load the artifact from `oteam/rfdiffusion-complex-base` using the OFoldX `Auto*` interface:
99
 
100
  ```python
101
+ from ofoldx.pipelines import Pipeline
102
+
103
+ pipeline = Pipeline.from_pretrained("oteam/rfdiffusion-complex-base")
104
+ output = pipeline(...)
105
+
106
  from ofoldx import AutoModel
107
 
108
  model = AutoModel.from_pretrained("oteam/rfdiffusion-complex-base")