File size: 270 Bytes
98735f0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from transformers import AutoModelForCausalLM

model = "/Users/Goekdeniz.Guelmez@computacenter.com/Library/CloudStorage/OneDrive-COMPUTACENTER/Desktop/MiniMax01Text-Dev"

model = AutoModelForCausalLM.from_pretrained(
    model,
    trust_remote_code=True
)

print(model)