available_zero_shot_models

Get list of zero-shot models available in ProteinGym v1.2.

Returns:
  • List[str]

    List of model names (cleaned with underscores)

Source code in proteingympy/make_zero_shot_substitutions.py
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
def available_zero_shot_models() -> List[str]:
    """
    Get list of zero-shot models available in ProteinGym v1.2.

    Returns:
        List of model names (cleaned with underscores)
    """
    # Based on ProteinGym v1.2, there are 79 zero-shot models
    models = [
        "Site_Independent", "EVmutation",
        "DeepSequence_single", "DeepSequence_ensemble",
        "EVE_single", "EVE_ensemble",
        "Unirep", "Unirep_evotune",
        "MSA_Transformer_single", "MSA_Transformer_ensemble",
        "ESM1b", "ESM1v_single",
        "ESM1v_ensemble", "ESM2_8M",
        "ESM2_35M", "ESM2_150M",
        "ESM2_650M", "ESM2_3B",
        "ESM2_15B", "Wavenet",
        "RITA_s", "RITA_m",
        "RITA_l", "RITA_xl",
        "Progen2_small", "Progen2_medium",
        "Progen2_base", "Progen2_large",
        "Progen2_xlarge", "GEMME",
        "VESPA", "VESPAl",
        "VespaG", "ProtGPT2",
        "Tranception_S_no_retrieval", "Tranception_M_no_retrieval",
        "Tranception_L_no_retrieval", "Tranception_S",
        "Tranception_M", "Tranception_L",
        "TranceptEVE_S", "TranceptEVE_M",
        "TranceptEVE_L", "CARP_38M",
        "CARP_600K", "CARP_640M",
        "CARP_76M", "MIF",
        "MIFST", "ESM_IF1",
        "ProteinMPNN", "ProtSSN_k10_h512",
        "ProtSSN_k10_h768", "ProtSSN_k10_h1280",
        "ProtSSN_k20_h512", "ProtSSN_k20_h768",
        "ProtSSN_k20_h1280", "ProtSSN_k30_h512",
        "ProtSSN_k30_h768", "ProtSSN_k30_h1280",
        "ProtSSN_ensemble", "SaProt_650M_AF2",
        "SaProt_35M_AF2", "PoET",
        "MULAN_small", "ProSST_20",
        "ProSST_128", "ProSST_512",
        "ProSST_1024", "ProSST_2048",
        "ProSST_4096", "ESCOTT",
        "VenusREM", "RSALOR",
        "S2F", "S2F_MSA",
        "S3F", "S3F_MSA",
        "SiteRM"
    ]
    return models