Ask HN: Why hasn't x86 caught up with Apple M series?
383 points by stephenheron 1d ago 539 comments
Ask HN: Best codebases to study to learn software design?
100 points by pixelworm 2d ago 89 comments
How can a mutex in Wine be faster than a native one on Linux
3 points by lh_mouse 18h ago 1 comments
Experiment: Grid-Indexed Localization with LLMs for Bounding Boxes
2 iaitalia 1 8/26/2025, 9:36:22 PM github.com ↗
As a workaround, I tried a different approach: instead of asking the model for raw pixel coordinates, I divide the image into a grid and let the LLM reason in terms of grid cells (e.g. row/column indices). These grid indices are then mapped back into pixel coordinates.
This “grid-indexed” method doesn’t solve everything, but it seems to reduce randomness and makes outputs more stable across providers (OpenAI, Anthropic, Gemini, etc.). It’s lightweight — just a single JS file + example HTML demo.
Code and README are here: https://github.com/IntelligenzaArtificiale/GILM-Grid-Indexed...
I’d be curious if others have tried similar approaches, or if anyone has ideas on how to improve robustness of bounding box detection with LLMs.