mistralai/Mistral-7B-Instruct-v0.3 fine-tuned on text-to-SQL and quantized to 4 bits with DynQuant. It is one of 9 arms in a panel where every quantized arm was allocated the same byte budget, so the accuracies below differ by method and not by size.
Execution match on 2,454 held-out text-to-SQL problems: the generated query is run against the schema and compared to the reference result set.
McNemar exact over the per-item hits, so every row is a paired test on the same problems in the same order. p (Holm) is step-down corrected within the family the panel declared, not within this card.
Source, format spec, and the allocator that produced this arm's bit map:
https://github.com/kambojvikram/dynquant
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3import dynquant
4
5dynquant.register_hf_quantizer()
6
7model = AutoModelForCausalLM.from_pretrained("VikramPal/mistral-7b-instruct-v0.3-DynQuant-4bit", device_map="cuda")
8tokenizer = AutoTokenizer.from_pretrained("VikramPal/mistral-7b-instruct-v0.3-DynQuant-4bit")