Feature Extraction
Transformers
Safetensors
esmfold2
biology
protein-structure
multimodal-protein-model
custom_code
Instructions to use Synthyra/ESMFold2-Fast with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Synthyra/ESMFold2-Fast with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Synthyra/ESMFold2-Fast", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Synthyra/ESMFold2-Fast", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 247 Bytes
b44701d | 1 2 3 4 5 6 | from .configuration_esmfold2 import ESMFold2Config
from .modeling_esmfold2_experimental import ESMFold2ExperimentalModel
from .modeling_esmfold2 import ESMFold2Model
__all__ = ["ESMFold2Config", "ESMFold2ExperimentalModel", "ESMFold2Model"]
|