Views
No views yet
akhilfau/fine-tuned-smolLM2-360M-with-on-combined_Instruction_dataset24.51% on MMLU College Physics| Dataset | Accuracy (SmolLM2-360M-Instruct) |
|---|---|
| MMLU: College Physics | 24.51% |
| Instruction-Tuned camel-ai | 25.49% |
| Combined Instruction Dataset | 24.51% |
| Format | Size | Accuracy Retention | Inference Speed | RAM Usage | Target Use |
|---|---|---|---|---|---|
Q4_K_M | ~271MB | ~95–97% | Fast | ~600–800MB | Ideal for mid-range mobile devices |
Q8_0 | ~386MB | ~99% | Medium | ~1–1.5GB | Best for higher-end devices |
FP16 | ~800MB | 100% | Slow | ~2GB+ | Reference use only |
1# Using llama.cpp
2./main -m smollm2-360m-physics-gguf.Q4_K_M.gguf -p "What is the acceleration of a 2kg mass falling from 5 meters?"llama-cpp-python:1from llama_cpp import Llama
2
3llm = Llama(model_path="smollm2-360m-physics-gguf.Q4_K_M.gguf")
4output = llm("What is the potential energy of a 3kg object at 10 meters?")1@misc{vallala2025tinyphysics,
2 title={Tiny-Physics: A Compact Large Language Model for Physics Word Problems on Mobile Devices},
3 author={Akhil Vallala},
4 year={2025},
5 howpublished={\url{https://huggingface.co/akhilfau/smollm2-360m-physics-gguf}},
6}