File size: 1,271 Bytes
e76b79a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

dependencies = ["torch"]

from esm.pretrained import (
    esm1_t6_43M_UR50S,
    esm1_t12_85M_UR50S,
    esm1_t34_670M_UR50D,
    esm1_t34_670M_UR50S,
    esm1_t34_670M_UR100,
    esm1b_t33_650M_UR50S,
    esm1v_t33_650M_UR90S,
    esm1v_t33_650M_UR90S_1,
    esm1v_t33_650M_UR90S_2,
    esm1v_t33_650M_UR90S_3,
    esm1v_t33_650M_UR90S_4,
    esm1v_t33_650M_UR90S_5,
    esm2_t6_8M_UR50D,
    esm2_t12_35M_UR50D,
    esm2_t30_150M_UR50D,
    esm2_t33_650M_UR50D,
    esm2_t36_3B_UR50D,
    esm2_t48_15B_UR50D,
    esm_if1_gvp4_t16_142M_UR50,
    esm_msa1_t12_100M_UR50S,
    esm_msa1b_t12_100M_UR50S,
    esmfold_structure_module_only_8M,
    esmfold_structure_module_only_8M_270K,
    esmfold_structure_module_only_35M,
    esmfold_structure_module_only_35M_270K,
    esmfold_structure_module_only_150M,
    esmfold_structure_module_only_150M_270K,
    esmfold_structure_module_only_650M,
    esmfold_structure_module_only_650M_270K,
    esmfold_structure_module_only_3B,
    esmfold_structure_module_only_3B_270K,
    esmfold_structure_module_only_15B,
    esmfold_v0,
    esmfold_v1,
)