Nagacharan25/weather-llama-initial
014
Weather LLM — SFT (run1 stage2, step 2500)
Supervised fine-tuning checkpoint: `run1_stage2/checkpoint-2500`.
Tokenizer config adjusted for Hub (LlamaTokenizer, model_max_length=2048).
Load
from transformers import AutoModelForCausalLM, AutoTokenizer
repo = "Nagacharan25/weather-llama-initial"
model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype="auto", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained(repo)Requires transformers (Llama + SentencePiece) and sentencepiece.
