Views
No views yet
google/gemma-4-E2B-it, fine-tuned to read OBD-II sensor windows and explain car problems in plain English with calibrated repair-cost estimates and the specific upsell traps mechanics attach to each fault.MindFreakGamer/gemma-4-E2B-pocket-mechanic-GGUF. Use this adapter only if you want to fuse into a different base, experiment with merging, or further fine-tune.1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("google/gemma-4-E2B-it")
5model = PeftModel.from_pretrained(base, "MindFreakGamer/gemma-4-E2B-pocket-mechanic-lora")
6tokenizer = AutoTokenizer.from_pretrained("google/gemma-4-E2B-it")q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj