Synthyra / ESMFold2-Experimental-Fast-Cutoff2025

huggingface.co
Total runs: 81
24-hour runs: 0
7-day runs: 0
30-day runs: -183
Model's Last Updated: August 27 2026
feature-extraction

Introduction of ESMFold2-Experimental-Fast-Cutoff2025

Model Details of ESMFold2-Experimental-Fast-Cutoff2025

FastPLMs ESMFold2

FastPLMs ESMFold2 is a self-contained Hugging Face AutoModel wrapper for Biohub's ESMFold2 and ESMFold2-Fast structure predictors. It vendors the released Biohub ESMFold2 model code, ESMC backbone code, input builder, MSA helpers, and structure export utilities needed for remote-code loading.

Load With AutoModel
import torch
from transformers import AutoModel

model = AutoModel.from_pretrained(
    "Synthyra/ESMFold2-Fast",
    trust_remote_code=True,
    dtype=torch.float32,
).eval().cuda()

Use Synthyra/ESMFold2 for the full model and Synthyra/ESMFold2-Fast for the faster release variant. The folding trunk runs in fp32; the 6B ESMC backbone is loaded in bf16 by default via esmc_precision="bf16" .

Fold One Protein
sequence = "MKTLLILAVVAAALA"

result = model.fold_protein(
    sequence,
    num_loops=3,
    num_sampling_steps=50,
    num_diffusion_samples=1,
    seed=0,
)

print(float(result.plddt.mean()))
print(float(result.ptm))
Save mmCIF or PDB
model.save_as_cif(result, "prediction.cif")
model.save_as_pdb(result, "prediction.pdb")

cif_text = model.result_to_cif(result)
pdb_text = model.result_to_pdb(result)

result_to_cif preserves the full MolecularComplex . result_to_pdb converts through Biohub's protein-only ProteinComplex representation, so use mmCIF for complexes with ligands or nucleic acids.

Fold Complexes
types = model.input_types

complex_input = types.StructurePredictionInput(
    sequences=[
        types.ProteinInput(id="A", sequence="MKTLLILAVVAAALA"),
        types.DNAInput(id="B", sequence="GATAGC"),
        types.LigandInput(id="L", ccd=["SAH"]),
    ]
)

result = model.fold(
    complex_input,
    num_loops=3,
    num_sampling_steps=50,
    num_diffusion_samples=1,
    seed=0,
)

model.save_as_cif(result, "complex_prediction.cif")
Use MSAs
types = model.input_types

msa = types.MSA.from_a3m("query.a3m", max_sequences=128)
input_with_msa = types.StructurePredictionInput(
    sequences=[
        types.ProteinInput(id="A", sequence=msa.query, msa=msa),
    ]
)

result = model.fold(input_with_msa, num_sampling_steps=50, seed=0)
Raw Tensor Inference
features, chain_infos = model.prepare_structure_input(complex_input, seed=0)

with torch.inference_mode():
    output = model(
        **features,
        num_loops=3,
        num_sampling_steps=50,
        num_diffusion_samples=1,
    )

decoded = model.input_builder.decode(output, features, chain_infos)

Set load_esmc=False when loading if you want to provide precomputed lm_hidden_states manually or run folding-trunk tests without loading the 6B ESMC backbone:

model = AutoModel.from_pretrained(
    "Synthyra/ESMFold2-Fast",
    trust_remote_code=True,
    load_esmc=False,
).cuda().eval()

Runs of Synthyra ESMFold2-Experimental-Fast-Cutoff2025 on huggingface.co

81
Total runs
0
24-hour runs
-1
3-day runs
0
7-day runs
-183
30-day runs

More Information About ESMFold2-Experimental-Fast-Cutoff2025 huggingface.co Model

More ESMFold2-Experimental-Fast-Cutoff2025 license Visit here:

https://choosealicense.com/licenses/mit

ESMFold2-Experimental-Fast-Cutoff2025 huggingface.co

ESMFold2-Experimental-Fast-Cutoff2025 huggingface.co is an AI model on huggingface.co that provides ESMFold2-Experimental-Fast-Cutoff2025's model effect (), which can be used instantly with this Synthyra ESMFold2-Experimental-Fast-Cutoff2025 model. huggingface.co supports a free trial of the ESMFold2-Experimental-Fast-Cutoff2025 model, and also provides paid use of the ESMFold2-Experimental-Fast-Cutoff2025. Support call ESMFold2-Experimental-Fast-Cutoff2025 model through api, including Node.js, Python, http.

ESMFold2-Experimental-Fast-Cutoff2025 huggingface.co Url

https://huggingface.co/Synthyra/ESMFold2-Experimental-Fast-Cutoff2025

Synthyra ESMFold2-Experimental-Fast-Cutoff2025 online free

ESMFold2-Experimental-Fast-Cutoff2025 huggingface.co is an online trial and call api platform, which integrates ESMFold2-Experimental-Fast-Cutoff2025's modeling effects, including api services, and provides a free online trial of ESMFold2-Experimental-Fast-Cutoff2025, you can try ESMFold2-Experimental-Fast-Cutoff2025 online for free by clicking the link below.

Synthyra ESMFold2-Experimental-Fast-Cutoff2025 online free url in huggingface.co:

https://huggingface.co/Synthyra/ESMFold2-Experimental-Fast-Cutoff2025

ESMFold2-Experimental-Fast-Cutoff2025 install

ESMFold2-Experimental-Fast-Cutoff2025 is an open source model from GitHub that offers a free installation service, and any user can find ESMFold2-Experimental-Fast-Cutoff2025 on GitHub to install. At the same time, huggingface.co provides the effect of ESMFold2-Experimental-Fast-Cutoff2025 install, users can directly use ESMFold2-Experimental-Fast-Cutoff2025 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

ESMFold2-Experimental-Fast-Cutoff2025 install url in huggingface.co:

https://huggingface.co/Synthyra/ESMFold2-Experimental-Fast-Cutoff2025

Url of ESMFold2-Experimental-Fast-Cutoff2025

ESMFold2-Experimental-Fast-Cutoff2025 huggingface.co Url

Provider of ESMFold2-Experimental-Fast-Cutoff2025 huggingface.co

Synthyra
ORGANIZATIONS

Other API from Synthyra

huggingface.co

Total runs: 39.8K
Run Growth: 0
Growth Rate: 0.00%
Updated:November 15 2025
huggingface.co

Total runs: 2.6K
Run Growth: 1.2K
Growth Rate: 48.67%
Updated:July 25 2026
huggingface.co

Total runs: 1.2K
Run Growth: 1.2K
Growth Rate: 97.51%
Updated:April 21 2026
huggingface.co

Total runs: 539
Run Growth: 231
Growth Rate: 42.86%
Updated:February 25 2026
huggingface.co

Total runs: 515
Run Growth: 173
Growth Rate: 33.59%
Updated:March 13 2026
huggingface.co

Total runs: 229
Run Growth: 167
Growth Rate: 72.93%
Updated:August 27 2026
huggingface.co

Total runs: 139
Run Growth: -94
Growth Rate: -67.63%
Updated:August 27 2026
huggingface.co

Total runs: 135
Run Growth: 26
Growth Rate: 19.26%
Updated:August 27 2026
huggingface.co

Total runs: 132
Run Growth: -18
Growth Rate: -13.64%
Updated:August 27 2026
huggingface.co

Total runs: 117
Run Growth: -21
Growth Rate: -17.95%
Updated:August 27 2026
huggingface.co

Total runs: 116
Run Growth: -143
Growth Rate: -123.28%
Updated:August 27 2026
huggingface.co

Total runs: 82
Run Growth: -7
Growth Rate: -8.54%
Updated:August 27 2026
huggingface.co

Total runs: 71
Run Growth: -71
Growth Rate: -100.00%
Updated:August 27 2026
huggingface.co

Total runs: 70
Run Growth: -41
Growth Rate: -58.57%
Updated:August 27 2026
huggingface.co

Total runs: 49
Run Growth: -22
Growth Rate: -44.90%
Updated:August 27 2026
huggingface.co

Total runs: 31
Run Growth: 0
Growth Rate: 0.00%
Updated:November 09 2024
huggingface.co

Total runs: 30
Run Growth: -288
Growth Rate: -960.00%
Updated:August 27 2026
huggingface.co

Total runs: 25
Run Growth: 0
Growth Rate: 0.00%
Updated:November 15 2025
huggingface.co

Total runs: 21
Run Growth: -73
Growth Rate: -347.62%
Updated:August 27 2026
huggingface.co

Total runs: 3
Run Growth: -6
Growth Rate: -200.00%
Updated:November 21 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:February 09 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 22 2025