This is a model card for MULAN-small protein language model introduced in the paper
MULAN: Multimodal Protein Language Model for
Sequence and Structure Encoding.
It has 35M parameters.
It can be loaded using the
MULAN repository:
1from mulan.model import StructEsmForMaskedLM
2
3model = StructEsmForMaskedLM.from_pretrained(
4 'DFrolova/MULAN-ESM2-35M',
5 device_map="auto",
6)