Instructions to use facebook/esmfold_v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/esmfold_v1 with Transformers:
# Load model directly from transformers import AutoTokenizer, EsmForProteinFolding tokenizer = AutoTokenizer.from_pretrained("facebook/esmfold_v1") model = EsmForProteinFolding.from_pretrained("facebook/esmfold_v1") - Notebooks
- Google Colab
- Kaggle
Complexes modeling
#2
by stolosa - opened
Hi!
I am trying to model the serine protease/inhibitor complex (1CGI) by giving as input both sequences separated by a "/" (sequence1/sequence2) and the model generates a structure for this complex but with an incorrect orientation of the monomers. Does anyone know how to use ESMFold with protein complexes?
Thanks :)
stolosa changed discussion title from Complexex modeling to Complexes modeling
You would insert a flexible (poly-G) linker and then remove it from the output. See the paper and see https://github.com/facebookresearch/esm/blob/main/esm/esmfold/v1/esmfold.py#L288