frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A 3×3 puzzle where the grid loops and three in a line fuses

https://play243.com/
1•Dogs2478•3m ago•0 comments

Show HN: Clor – The ADE where Claude and Codex work together with shared memory

2•jacobgold•3m ago•0 comments

Who Handles Your Security Reviews?

https://www.olafalders.com/2026/09/09/who-handles-your-security-reviews/
1•oalders•4m ago•0 comments

Reddit saves your keystrokes in text boxes

1•thomasjeff1•4m ago•0 comments

A phone reputation site search engines can't index

https://whocalledyou.dev/
1•ma1ms•5m ago•0 comments

Blizzard Entertainment Workers Ratify Video Game Contracts with CWA

https://cwa-union.org/news/releases/blizzard-entertainment-workers-ratify-historic-video-game-con...
1•toomuchtodo•5m ago•1 comments

What's a Computer?

https://blog.ctms.me/posts/2026-07-15-being-away-from-computers/
1•signa11•5m ago•0 comments

New Worflow Engine

https://github.com/hadielmougy/wiggle
1•helmougy•5m ago•0 comments

Homeschooling Explodes 200% in NYC

https://nypost.com/2026/09/09/lifestyle/why-nyc-parents-are-homeschooling-their-kids-in-2026/
2•simonebrunozzi•6m ago•0 comments

Three times an AI newsroom challenged its own published claims

https://areyto.media/corrections
1•rendonroman•6m ago•0 comments

Show HN: Unblur – Analyze your spending in the browser, no bank connection

https://unblur.money
1•hammaz•7m ago•0 comments

Breakscale: Live System Design Simulator

https://breakscale.tech/
1•domhudson•7m ago•1 comments

Canonical Evolution of Enterprise Open Source RISC-V at Hot Chips 2026

https://www.servethehome.com/canonical-evolution-of-enterprise-open-source-risc-v-at-hot-chips-2026/
1•fork-bomber•8m ago•0 comments

V2G is a paperwork problem, not a technology problem

https://justinkuiper.substack.com/p/to-scale-solar-we-need-millions-of
2•surprisetalk•9m ago•0 comments

YC created Flock 10 years ago

4•YCmadeFlock•9m ago•0 comments

Courts Can't Let Go of the Possibility That Individual Prices Are Copyrightable

https://blog.ericgoldman.org/archives/2026/09/courts-still-cant-let-go-of-the-possibility-that-in...
1•hn_acker•9m ago•1 comments

Show HN: Open statistics for every Finnish postal code, with an MCP server

https://suomiatlas.com/en/mcp
1•itulo•9m ago•0 comments

The "Bad Guy": Defensive Simplification and Moral Ambiguity in Police Work

https://journals.sagepub.com/doi/10.1177/00224278261467302
1•mdp2021•12m ago•1 comments

Toolproof, nine indexes that measure AI agent tooling from source

https://toolproof.kynth.studio
1•kyisaiah47•14m ago•0 comments

14yr old Russian female pilot

https://web.archive.org/web/20231021135735oe_/https://rr1---sn-o097znzd.googlevideo.com/videoplay...
1•barrister•15m ago•1 comments

Show HN: Email where an address is a keypair, with an SMTP bridge

https://dmcn.dev/
1•mertenvg•15m ago•0 comments

Why becoming rich is not evli?

1•iaziz786•15m ago•0 comments

Ask HN: Would you support an anti-AI organization financially?

1•roschdal•18m ago•1 comments

The Bulldozing of an Interface

https://blog.jim-nielsen.com/2026/bulldoze-ui/
1•Brajeshwar•18m ago•0 comments

Japan's book scene is quietly moving from bookstores to libraries

https://untranslatedjp.substack.com/p/japans-book-scene-is-quietly-moving
4•speckx•19m ago•2 comments

Caption.me now autonomously improves itself

https://forum.caption.me/t/caption-me-now-autonomously-improves-itself/2284
2•cbeach•19m ago•0 comments

Medicine Needs to Get Serious About AI

https://www.theatlantic.com/health/2026/09/artificial-intelligence-autonomous-doctor-medicine/688...
2•hdvr•20m ago•0 comments

You Could Have Come Up with Speculative Decoding

https://amandeepsp.github.io/blog/spec-decode/
1•amandeepspdhr•21m ago•0 comments

Show HN: Palestine – JavaScript-like DOM manipulation in Python

https://github.com/u84u/palestine
2•u84u•21m ago•1 comments

DocuQueue – Document Generation Plugin

https://github.com/docuqueue/docuqueue-plugin
1•notoriousarun•21m ago•0 comments
Open in hackernews

Show HN: Run automated ML experiments using Claude Code

https://github.com/killerstorm/claude-torch-template
1•killerstorm•1y ago
I made a template which can be used to conduct (basic) ML experiments in a fully automated mode: Claude Code will write the code, you only need to provide a working environment and the idea.

The goal was largely to demonstrate that this is possible, specifically to:

* encourage to people who want to run some ML experiment but don't have time t code it to actually give it a try * provide evidence that LLM recursive self-improvement is not "science fiction"

The template is bare bones, it does not come with niceties for monitoring experiments, conduct experiments at scale, etc.

The script assumes that CUDA, Python, PyTorch are already set up. This is quite easy if you rent an instance from https://lambda.ai/ - that's pre-installed. You'd only need to install Claude Code (which itself requires npm) to get it going.

As I mentioned in the README, the most advanced experiment I tried so far is injection of sentence-embedding memory into a pre-trained transformer.

The timeline on https://ai-2027.com/ assumes that we'll only be able to get AI coding agents which can do ML experiments in 2026, but it seems like it is already possible now. (I spent only few hours on this, obviously proper AI labs can spend whole days on infrastructure, scaffolding, prompting, fine-tuning, etc.)

Comments

killerstorm•1y ago
If you actually want to conduct some experiment, I'd suggest:

* fist iterate on the idea with o3 (best choice) or other big model (Opus 4, Gemini 2.5 Pro, Grok 3) -- ask it whether it was done before, how to improve it, what is the expected outcome, etc. o3 is really smart, it can explain intuition between different choices, etc. * Python packages are hard. Using virtual environment (venv) is recommended. `uv` is probably the modern way to manage venv, but installing torch with CUDA support via uv is pain, what I found works is: * `uv pip install torch --torch-backend=cu126` (uv pip uninstall torch) * lambda.ai provides high-quality environment, but it might lack cheaper GPU options. * as I mentioned in README, there's no sandboxing, Claude can do pretty much arbitrary stuff...