DFrolova commited on
Commit
86c4c3d
·
verified ·
1 Parent(s): b51308d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -3
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
+ ```