Views
No views yet
1from unsloth import FastLanguageModel
2model, tokenizer = FastLanguageModel.from_pretrained(
3 model_name = "ragtag1/llama32-3b-historical-final",
4 max_seq_length = 2048,
5 load_in_4bit = True,
6)
7FastLanguageModel.for_inference(model)