Update README.md with new model card content
Browse files
README.md
CHANGED
|
@@ -1,25 +1,42 @@
|
|
| 1 |
---
|
| 2 |
library_name: keras-hub
|
| 3 |
---
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
*
|
| 16 |
-
*
|
| 17 |
-
*
|
| 18 |
-
*
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
library_name: keras-hub
|
| 3 |
---
|
| 4 |
+
### Model Overview
|
| 5 |
+
Evolutionary Scale Modeling (ESM) version 2 architecture.
|
| 6 |
+
|
| 7 |
+
**Reference**
|
| 8 |
+
|
| 9 |
+
- [Evolutionary-scale prediction of atomic level protein structure with a language model](https://www.biorxiv.org/content/10.1101/2022.07.20.500902v2)
|
| 10 |
+
|
| 11 |
+
ESM-2 is a state-of-the-art protein model trained on a masked language modelling objective. It is suitable for fine-tuning on a wide range of tasks that take protein sequences as input.
|
| 12 |
+
|
| 13 |
+
## Links
|
| 14 |
+
|
| 15 |
+
* [ESM-2 Quickstart Notebook] - coming soon
|
| 16 |
+
* [ESM-2 API Documentation] - coming soon
|
| 17 |
+
* [ESM-2 Beginner Guide] - coming soon
|
| 18 |
+
* [KerasHub Model Publishing Guide](https://keras.io/guides/keras_hub/upload/)
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
## Installation
|
| 22 |
+
|
| 23 |
+
Keras and KerasHub can be installed with:
|
| 24 |
+
|
| 25 |
+
```
|
| 26 |
+
pip install -U -q keras-hub
|
| 27 |
+
pip install -U -q keras
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
Jax, TensorFlow, and Torch come preinstalled in Kaggle Notebooks. For instructions on installing them in another environment see the [Keras Getting Started](https://keras.io/getting_started/) page.
|
| 31 |
+
|
| 32 |
+
## Presets
|
| 33 |
+
|
| 34 |
+
The following model checkpoints are provided by the Keras team. Weights have been ported from: https://huggingface.co. Full code examples for each are available below.
|
| 35 |
+
|
| 36 |
+
| Preset name | Parameters | Description |
|
| 37 |
+
|------------------------------------|------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
| 38 |
+
| esm2_t6_8M | 8M | 6 transformer layers version of the ESM-2 protein language model, trained on the UniRef50 clustered protein sequence dataset. |
|
| 39 |
+
| esm2_t12_35M | 35M | 12 transformer layers version of the ESM-2 protein language model, trained on the UniRef50 clustered protein sequence dataset. |
|
| 40 |
+
| esm2_t30_150M | 150M | 30 transformer layers version of the ESM-2 protein language model, trained on the UniRef50 clustered protein sequence dataset. |
|
| 41 |
+
| esm2_t33_650M | 650M | 33 transformer layers version of the ESM-2 protein language model, trained on the UniRef50 clustered protein sequence dataset. |
|
| 42 |
+
|