Views
No views yet
pip install git+https://github.com/mrinaldi97/matformer.git1import torch
2from transformers import AutoModelForMaskedLM
3
4model = AutoModelForMaskedLM.from_pretrained(
5 "mrinaldi/albertina_hybrid_alibi_mlm30",
6 trust_remote_code=True
7)