ZhiyuanChen commited on
Commit
72b400e
·
verified ·
1 Parent(s): 0da1a98

Use pipeline-first OFoldX usage

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