Views
No views yet
run1_stage2/checkpoint-2500.
This repository contains both the published model artifacts and supporting project code files.transformers).run1_stage2/checkpoint-2500 model.model_max_length=2048).src/, scripts/, and configs/ in the HF Files section is used for:1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo = "AuraWorxAI/weather-llm-initial"
4model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype="auto", device_map="auto")
5tokenizer = AutoTokenizer.from_pretrained(repo)transformers and sentencepiece.1python -m weather_llm.inference.generate \
2 --model_dir artifacts/checkpoints/sft/run1_stage2 \
3 --prompt "Compare summer weather patterns in Arizona vs Washington."