pipelines
pipelines
provides a collection of pre-defined pipelines for users to apply trained models on their own data.
Usage
RNA Secondary Structure
Python |
---|
| from transformers import pipeline
import multimolecule as mm # noqa: F401
predictor = pipeline("rna-secondary-structure", model="multimolecule/ernierna-ss")
output = predictor("AUCG")
|