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-micro-posenc-mixed-alibi-rope",
6 trust_remote_code=True
7)