Benchmark LFM2.5 on accuracy + cost + hallucination against other models

#2
by vigneshwar234 - opened

Hi LiquidAI team πŸ‘‹

LFM2.5 looks impressive! For teams evaluating whether to adopt it for production, the key question is always: how does it compare on accuracy/cost/hallucination vs GPT-4o-mini or Gemini Flash?

I built an open source LLM Evaluation Framework that answers this in one command:

llm-eval compare \
  --models gpt-4o-mini \
  --models gemini/gemini-1.5-flash \
  --benchmark mmlu --samples 100

β†’ 🎯 Accuracy % β€” MMLU + TruthfulQA side by side
β†’ πŸ’° Cost per 1K tokens β€” production cost comparison
β†’ ⚑ Latency p95 β€” real-world tail latency
β†’ πŸ” Hallucination Rate β€” overconfident wrong outputs
β†’ 🧠 Reasoning Quality

Live demo (no API key): https://huggingface.co/spaces/vigneshwar234/llm-eval-demo
GitHub: https://github.com/vignesh2027/LLM-Evaluation-Framework

Open source. Would love to add LFM2.5 to our benchmark comparison!

Sign up or log in to comment