frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Role of wood-decaying fungi in green Calypsoinae orchid germination

https://besjournals.onlinelibrary.wiley.com/doi/10.1111/1365-2435.70181
1•PaulHoule•54s ago•0 comments

SVG phishing campaign targets Ukraine

1•Stasshe•1m ago•0 comments

Open Infrastructure Is Not Free: PyPI, the PSF, and Sustainability

https://pyfound.blogspot.com/2025/10/open-infrastructure-is-not-free-pypi.html
1•miketheman•3m ago•0 comments

AI Front End Generator Comparison: Claude Code vs. v0 vs. Lovable vs. Replit

https://www.hansreinl.de/blog/ai-code-generators-frontend-comparison
1•speckx•3m ago•0 comments

Nvidia Becomes First $5T Company

https://www.wsj.com/tech/ai/nvidia-poised-to-become-first-5-trillion-company-ae513ff0
1•bookofjoe•3m ago•1 comments

Trump Is Deeply Unpopular

https://www.economist.com/interactive/trump-approval-tracker
2•Bogdanp•4m ago•0 comments

Grammarly drops its iconic name, now rebranding to 'Superhuman'

https://www.neowin.net/news/grammarly-drops-its-iconic-name-now-rebranding-to-superhuman/
1•bundie•5m ago•0 comments

Can We Fix Social Media? Testing Using Generative Social Simulation

https://arxiv.org/abs/2508.03385
1•jzebedee•5m ago•0 comments

Show HN: Easy to use Cluster-Compute software

https://docs.burla.dev
1•pancakeguy•5m ago•0 comments

One Organization, Multiple Tailnets

https://tailscale.com/blog/multiple-tailnets-alpha
2•bluehatbrit•6m ago•0 comments

Show HN: Tasks.nvim Release v2.0.0

https://github.com/wsdjeg/tasks.nvim/releases/tag/v2.0.0
1•wsdjeg•7m ago•0 comments

Folder system within Google Sheets to group tabs – Finally

https://www.sheetsorganizer.com
1•josephautomates•7m ago•0 comments

Show HN: Qwe – Atomic Version Control System

https://github.com/mainak55512/qwe
2•mbhatt99•9m ago•0 comments

Show HN: HUD-like live annotation and sketching app for macOS

https://draw.wrobele.com/
2•tomaszsobota•10m ago•0 comments

Strapi 5 deployment on a shared hosting server

https://www.jvmhost.com/articles/strapi-shared-hosting-passenger/
1•jvmhost•10m ago•0 comments

Life After Work

https://www.mechanize.work/blog/life-after-work/
2•colesantiago•11m ago•0 comments

Box Office Bombs: Springsteen and Smashing Machine Struggle at Box Office

https://deadline.com/2025/10/box-office-bombs-springsteen-smashing-machine-1236598171/
1•Marshferm•15m ago•0 comments

Show HN: Spectral Indexing, from concept to paper to alpha in 45 days

https://www.tuned.org.uk/posts/008_arrowspace_proof_of_concept_energy_informed_search
1•tuned•15m ago•0 comments

George RR Martin sues OpenAI for copyright infringement

https://www.businessinsider.com/open-ai-chatgpt-microsoft-copyright-infringement-lawsuit-authors-...
7•HardwareLust•16m ago•0 comments

We're Shutting Down Our AI Startup and Open Sourcing Our Code

https://innovationnation.blog/p/odai-is-shutting-down-and-open-sourcing
2•gsibble•16m ago•0 comments

Could Mushrooms Be the Computer Memory of the Future?

https://www.extremetech.com/science/could-mushrooms-be-the-computer-memory-of-the-future
1•speckx•17m ago•0 comments

Microsoft's role in first AI-driven genocide, in Gaza, exposed

https://english.almayadeen.net/news/technology/microsoft-s-role-in-world-s-first-ai-driven-genoci...
2•jrepinc•19m ago•0 comments

San Francisco, CA Traffic Report – TomTom Traffic Index

https://www.tomtom.com/traffic-index/san-francisco-ca-traffic/
1•bariumbitmap•20m ago•0 comments

The Ethical Computing Initiative

https://aol.codeberg.page/eci/
1•digisign•21m ago•0 comments

Mom's son was asking Tesla's Grok AI bot about soccer; told him to send nudes

https://www.cbc.ca/news/investigates/tesla-grok-mom-9.6956930
18•choult•21m ago•7 comments

Australia's remarkable success in reducing preterm births

https://www.theguardian.com/australia-news/2025/oct/29/australia-reducing-preterm-births-babies
2•pavel_lishin•22m ago•0 comments

What's Next for Developer Teams: How to Prepare Now

https://thenewstack.io/whats-next-for-developer-teams-how-to-prepare-now/
1•jgrodziski•22m ago•0 comments

Republican plan would make deanonymization of census data trivial

https://www.wired.com/story/republicans-differential-privacy-census-overhaul/
1•duxup•22m ago•0 comments

Syntax Highlighting with Rails

https://avohq.io/blog/code-highlighting-with-rails
1•flow-flow•22m ago•0 comments

MCPTotal – A Managed, Secure Environment for Your AI Tools

https://mcptotal.io/
1•agentictime•23m ago•0 comments
Open in hackernews

I built a benchmark to score the 'architectural intelligence' of neural nets

https://github.com/Kim-Ai-gpu/gwo-benchmark
2•umjunsik132•3h ago

Comments

umjunsik132•3h ago
Hi HN, author here.

I've always felt that standard benchmarks focus too much on final accuracy, while the architectural choices that get us there are often treated like a dark art. We celebrate a new SOTA model, but rarely do we have a common language to discuss why a specific operation is efficient or how it contributes to the whole.

That's why I built "The Architect's Arena," a GWO-based benchmark that tries to score the "architectural intelligence" of neural network operations.

The Core Idea (How it Works): Inspired by the "Window is Everything" paper, it breaks down any operation (like a Conv layer) into its fundamental components (Path, Shape, Weight) and calculates a theoretical "Operational Complexity" score. The final efficiency score is a function of this complexity and the model's actual performance.

What's special about this benchmark? We explicitly separate the leaderboard into two parts: 1. Baseline Operations: Individual building blocks like StandardConv. The goal here is to invent new ops with high efficiency scores. 2. Reference Architectures: Complete models like ResNet. This isn't for score competition, but serves as a "performance target" to aim for. The challenge is to use your efficient new ops to build an architecture that can match ResNet's accuracy with lower total complexity.

Check it out here: Live Leaderboard: https://kim-ai-gpu.github.io/gwo-benchmark-leaderboard/ GitHub Repo: https://github.com/Kim-Ai-gpu/gwo-benchmark

This is an early version, and I would love to hear your feedback. What do you think of this approach? Are there any crucial baseline models or datasets you think should be added?

Thanks for checking it out!