Views
No views yet
mistralai/Mistral-7B-Instruct-v0.3 that turns it into a World Cup
match-prep analyst: given grounded evidence (recent form, head-to-head, playing styles,
news/injuries, stakes), it briefs what to weigh and ends with a hedged lean (likely
favourite + whether the game looks high- or low-scoring) — and never states an exact
scoreline, leaving the pick to the user.Trained on only 19 examples as a learning exercise — a demonstration of the QLoRA workflow and behaviour-tuning, not a production model.
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3base = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.3")
4model = PeftModel.from_pretrained(base, "<your-hf-username>/wc-analyst-lora")
5tok = AutoTokenizer.from_pretrained("mistralai/Mistral-7B-Instruct-v0.3")