Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
This is a model card for MULAN-small protein language model introduced in the paper [MULAN: Multimodal Protein Language Model for
|
| 7 |
+
Sequence and Structure Encoding](https://www.biorxiv.org/content/10.1101/2024.05.30.596565v1).
|
| 8 |
+
It has 9M parameters.
|
| 9 |
+
|
| 10 |
+
It can be loaded using the [MULAN repository](https://github.com/DFrolova/MULAN):
|
| 11 |
+
|
| 12 |
+
```python
|
| 13 |
+
from mulan.model import StructEsmForMaskedLM
|
| 14 |
+
|
| 15 |
+
model = StructEsmForMaskedLM.from_pretrained(
|
| 16 |
+
'DFrolova/MULAN-small',
|
| 17 |
+
device_map="auto",
|
| 18 |
+
)
|
| 19 |
+
```
|