andrewdalpino commited on
Commit
6743b4b
·
verified ·
1 Parent(s): 073145a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -10
README.md CHANGED
@@ -1,10 +1,93 @@
1
- ---
2
- tags:
3
- - model_hub_mixin
4
- - pytorch_model_hub_mixin
5
- ---
6
-
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Code: [More Information Needed]
9
- - Paper: [More Information Needed]
10
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ESMC Protein Function Predictor
2
+
3
+ An Evolutionary-scale Model (ESM) for protein function prediction from amino acid sequences using the Gene Ontology (GO). Based on the ESM Cambrian Transformer architecture, pre-trained on [UniRef](https://www.uniprot.org/help/uniref), [MGnify](https://www.ebi.ac.uk/metagenomics), and the Joint Genome Institute's database and fine-tuned on the [AmiGO Boost](https://huggingface.co/datasets/andrewdalpino/AmiGO-Boost) protein function dataset, this model predicts the GO subgraph for a particular protein sequence - giving you insight into the molecular function, biological process, and location of the activity inside the cell.
4
+
5
+ ## What are GO terms?
6
+
7
+ > "The Gene Ontology (GO) is a concept hierarchy that describes the biological function of genes and gene products at different levels of abstraction (Ashburner et al., 2000). It is a good model to describe the multi-faceted nature of protein function."
8
+
9
+ > "GO is a directed acyclic graph. The nodes in this graph are functional descriptors (terms or classes) connected by relational ties between them (is_a, part_of, etc.). For example, terms 'protein binding activity' and 'binding activity' are related by an is_a relationship; however, the edge in the graph is often reversed to point from binding towards protein binding. This graph contains three subgraphs (subontologies): Molecular Function (MF), Biological Process (BP), and Cellular Component (CC), defined by their root nodes. Biologically, each subgraph represent a different aspect of the protein's function: what it does on a molecular level (MF), which biological processes it participates in (BP) and where in the cell it is located (CC)."
10
+
11
+ From [CAFA 5 Protein Function Prediction](https://www.kaggle.com/competitions/cafa-5-protein-function-prediction/data)
12
+
13
+ ## Pretrained Models
14
+
15
+ The following pretrained models are available on HuggingFace Hub.
16
+
17
+ | Name | Embedding Dim. | Attn. Heads | Encoder Layers | Context Length | QAT | Total Parameters |
18
+ |---|---|---|---|---|---|---|
19
+ | [andrewdalpino/ESMC-300M-Protein-Function](https://huggingface.co/andrewdalpino/ESMC-300M-Protein-Function) | 960 | 15 | 30 | 2048 | None | 361M |
20
+ | [andrewdalpino/ESMC-300M-QAT-Protein-Function](https://huggingface.co/andrewdalpino/ESMC-300M-QAT-Protein-Function) | 960 | 15 | 30 | 2048 | int6w | 361M |
21
+ | [andrewdalpino/ESMC-600M-Protein-Function](https://huggingface.co/andrewdalpino/ESMC-600M-Protein-Function) | 1152 | 18 | 36 | 2048 | None | 644M |
22
+ | [andrewdalpino/ESMC-600M-QAT-Protein-Function](https://huggingface.co/andrewdalpino/ESMC-600M-QAT-Protein-Function) | 1152 | 18 | 36 | 2048 | int8w | 644M |
23
+
24
+ ## Basic Pretrained Example
25
+
26
+ First, install the `esmc_function_classifier` package using [pip](https://pypi.org/project/pip/).
27
+
28
+ ```sh
29
+ pip install esmc_function_classifier obonet
30
+ ```
31
+
32
+ Then, we'll load the model weights from HuggingFace Hub and the GO graph using `obonet`, tokenize the amino acid sequence, and infer the GO subgraph.
33
+
34
+ ```python
35
+ import torch
36
+
37
+ import obonet
38
+
39
+ from esm.tokenization import EsmSequenceTokenizer
40
+
41
+ from esmc_function_classifier.model import EsmcGoTermClassifier
42
+
43
+
44
+ model_name = "andrewdalpino/ESMC-300M-Protein-Function"
45
+
46
+ # Visit https://geneontology.org/docs/download-ontology/ to download.
47
+ go_db_path = "./dataset/go-basic.obo"
48
+
49
+ sequence = "MPPKGHKKTADGDFRPVNSAGNTIQAKQKYSIDDLLYPKSTIKNLAKETLPDDAIISKDALTAIQRAATLFVSYMASHGNASAEAGGRKKIT"
50
+
51
+ top_p = 0.5
52
+
53
+ tokenizer = EsmSequenceTokenizer()
54
+
55
+ model = EsmcGoTermClassifier.from_pretrained(model_name)
56
+
57
+ graph = obonet.read_obo(go_db_path)
58
+
59
+ model.load_gene_ontology(graph)
60
+
61
+ out = tokenizer(sequence, max_length=2048, truncation=True)
62
+
63
+ input_ids = torch.tensor(out["input_ids"], dtype=torch.int64)
64
+
65
+ go_term_probabilities = model.predict_terms(
66
+ input_ids, top_p=top_p
67
+ )
68
+ ```
69
+
70
+ You can also out put the gene-ontology (GO) `networkx` subgraph for a given sequence like in the example below.
71
+
72
+ ```python
73
+ subgraph, go_term_probabilities = model.predict_subgraph(
74
+ input_ids, top_p=top_p
75
+ )
76
+ ```
77
+
78
+ ### Quantized Model
79
+
80
+ To quantize the model weights using int8 call the `quantize_weights()` method. Any model can be quantized, but we recommend one that has been quantization-aware trained (QAT) for the best performance. The `group_size` argument controls the granularity at which quantization scales are computed.
81
+
82
+ ```python
83
+ model.quantize_weights(group_size=64)
84
+ ```
85
+
86
+ ## Code Repository
87
+
88
+ The training code can be found at [https://github.com/andrewdalpino/ESMC-Function-Classifier](https://github.com/andrewdalpino/ESMC-Function-Classifier).
89
+
90
+ ## References:
91
+
92
+ >- T. Hayes, et al. Simulating 500 million years of evolution with a language model, 2024.
93
+ >- M. Ashburner, et al. Gene Ontology: tool for the unification of biology, 2000.