esp32-ai
A 28.9 million parameter language model runs on an $8 ESP32-S3 microcontroller entirely on-device, generating simple stories at about 9.5 tokens per second.
CAPEval is a checklist-based benchmark that decouples image caption quality into Coverage (C) and Precision (P) scores across 300 images with 14,965 atomic checklist items, and links these profiles to VLM understanding and text-to-image generation.
2
No data
0
0
Apache-2.0
2026-07-30
It separates coverage from precision instead of using a single captioning score, and provides a public dataset, judge code, leaderboard, and downstream evaluation integration, making it a practical resource for caption-aware model assessment.
A Decoupled Caption Evaluation across Understanding and Generation
🏆 Leaderboard · 🤗 Hugging Face · 🔗 Downstream · 📄 Paper
A checklist-based benchmark that decouples caption quality into Coverage (C) and Precision (P) (0–100), and studies how each profile transfers to VLM understanding and T2I generation.
git clone https://github.com/liuzhipenggg/CAPEval.git
cd CAPEval
pip install -r requirements.txt
requirements.txt pins light deps and keeps transformers 4.x with `huggingface-hub/
caption/prompt.json
metrics/metrics.json
metrics/results_summary.json
```python
from capeval import CAPEval
score = CAPEval().evaluate_map({"SO001.jpg": "A detailed caption..."})
print(score["C"], score["P"])
print(score["per_category"])
300 images · 14,965 atomic checklist items · data/ (image/, gt_caption.jsonl, checklist.jsonl; join key img_path) · Hugging Face
Per-category C / P use the filename prefix (SO / PA / TI / DK). Optional tables in data/meta/ list category / subcategory labels (not required by the scorer).
Super-category Prefix Images Checklist items Avg. / image
Scene & ObjectSO1487,03947.6 People & ActivityPA603,16452.7 Text & InterfaceTI402,14653.6 Design & KnowledgeDK522,61650.3 Total30014,96549.9
Paper downstream numbers use official stacks:
CAPEVAL: A DECOUPLED CAPTION EVALUATION ACROSS UNDERSTANDING AND GENERATION
Similar projects matched by category, topics, and programming language.
A 28.9 million parameter language model runs on an $8 ESP32-S3 microcontroller entirely on-device, generating simple stories at about 9.5 tokens per second.
Deltafin is a research project that runs the 2.8-trillion-parameter Mixture-of-Experts model Kimi K3 on a single Apple Silicon Mac (e.g., M1 Max with 64 GB) at about 16 seconds per token, using exact, reproducible inference with local or streaming expert loading.

A comprehensive guide for building and configuring a high-end local machine to run state-of-the-art LLMs, with detailed hardware choices, BIOS tuning, and Docker-based model serving.