--- license: apache-2.0 library_name: transformers pipeline_tag: text-generation tags: - llama - causal-lm - weather - supervised-fine-tuning --- # 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 ```python 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`.