Downloads · 30 days
12
14% of all-time downloads
ShaileshH/smol-workertech
smol-workertech is a question answering model from ShaileshH. Use it when the input is a question plus a passage. It is set up for transformers.
This model is a domain-adapted version of HuggingFaceTB/SmolLM2-135M, fine-tuned to answer questions related to automotive service, technician workflows, diagnostics, and spare part replacement scenarios.
Downloads · 30 days
12
14% of all-time downloads
All-time downloads
85
Public
Parameters
135M
269 MB on disk
Likes
2
Public
Click a slice to open those files.
.safetensors269 MB · 100%
From the Hugging Face model README
This model is a domain-adapted version of HuggingFaceTB/SmolLM2-135M, fine-tuned to answer questions related to automotive service, technician workflows, diagnostics, and spare part replacement scenarios.
It is optimized for lightweight deployment in workshop assistants, service center copilots, and edge devices.
SmolLM2-135M-Technician-QA is a compact instruction-following language model fine-tuned on a curated dataset of technician question-answer pairs covering:
The model is designed for real-world automotive service environments where fast and efficient inference is required.
This model can be used for:
The model can be integrated into:
This model should NOT be used for:
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "<your-username>/SmolLM2-135M-Technician-QA"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
prompt = "Customer says the car battery drains overnight. What should you check?"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=120)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Held-out automotive technician QA samples from the same domain.
Customer complaint handling
Diagnostic reasoning
Spare part replacement logic
Service workflow understanding
Perplexity
Instruction-following accuracy
Manual domain evaluation
Strong performance on workshop troubleshooting queries
Accurate step-by-step diagnostic suggestions
Fast inference on CPU
The fine-tuned model shows clear domain adaptation compared to the base SmolLM2 model, especially for automotive service workflows.