Fine-tuned LoRA adapter for generating realistic citizen dialogue and reactions in the Ecotopia political simulation game. Citizens respond to mayor policies with contextual opinions based on their demographic profiles.
This is a LoRA adapter. Load with PEFT:
1from peft import PeftModel
2from transformers import AutoModelForCausalLM
3
4base = AutoModelForCausalLM.from_pretrained("mistralai/Ministral-8B-Instruct-2410")
5model = PeftModel.from_pretrained(base, "mistral-hackaton-2026/ecotopia-citizens-ministral-8b")
Built for the Mistral Worldwide Hackathon 2026 (London) by Nolan Cacheux and Kyle Kreuter.