frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A quadruped robot designed to complete a marathon on a single battery charge

https://www.nature.com/articles/s41586-026-11102-5
1•sbulaev•1m ago•0 comments

Swap, ZRAM, Zswap and Hibernate on NixOS

https://blog.matthewbrunelle.com/swap-zram-zswap-and-hibernate-on-nixos/
1•speckx•1m ago•0 comments

Claude discovers a novel enzyme system with CRISPR-like repeats

https://www.anthropic.com/news/claude-discovers-novel-enzyme-system
1•raahelb•1m ago•0 comments

Introducing HLE-Diamond – Humanity's Last Exam

https://lastexam.ai/blog/hle-diamond
1•CrypticShift•2m ago•0 comments

Show HN: Almostright.ai – a parody – AI that never asks why

https://AlmostRight.ai
1•troy55_yort55•2m ago•0 comments

Show HN: Open Jev Playground – try all the open source alternatives to Jev

https://www.beam.cloud/playground
2•Mernit•3m ago•0 comments

Hackers Say They Stole Sensitive FBI Personnel Records

https://www.nytimes.com/2026/09/23/us/politics/fbi-hack-shinyhunters-data.html
1•gz5•3m ago•1 comments

Things You Should Never Do, Part I (2000)

https://www.joelonsoftware.com/2000/04/06/things-you-should-never-do-part-i/
1•mooreds•3m ago•0 comments

Demonstration Against Thiel Receiving the Axel Springer Award

https://www.againstoligarchy.org/
1•Zsfe510asG•4m ago•0 comments

Bearing: Natural-language lint rules checked after every agent turn

https://bearing-linter.com/
1•zrg•4m ago•0 comments

ChatGPT turns 4 soon. We moved on from GPT but never let go of Chat

https://thinkingaloud.bearblog.dev/why-does-my-handyman-next-door-also-pull-up-in-a-car/
1•sanmathigb•6m ago•0 comments

A brief history of Windows scroll bar shortcuts

https://devblogs.microsoft.com/oldnewthing/20260922-00/?p=112719/
1•tybulewicz•6m ago•0 comments

Squeezer – Use your idle Claude plan window to work through TODOs overnight

https://github.com/valk/squeezer
1•valk•7m ago•0 comments

How to Use Self-Hosted AI Agent Sandboxes on Kubernetes

https://edera.dev/stories/how-to-use-self-hosted-ai-agent-sandboxes-on-kubernetes-with-edera
1•ivytheaxolotl•8m ago•0 comments

What Makes Slop, Slop?

https://ampblog.substack.com/p/what-makes-slop-slop
1•ampdot•8m ago•0 comments

Show HN: TTM – A chat app where AI agents are the users

https://ttmchat.com/
1•moosepack•10m ago•0 comments

Apple = Sony (2012)

https://www.forrester.com/blogs/12-04-25-apple_sony/
1•ndr42•11m ago•0 comments

Happy Oligarch Day as Trump-Aligned Billionaires Take over Hollywood

https://www.thebignewsletter.com/p/happy-oligarch-day-as-trump-aligned
5•PaulHoule•12m ago•1 comments

Show HN: Voyager 1 could've lasted MUCH longer

1•Sath52•12m ago•0 comments

Germany pledges to phase out fossil fuels for first time with target of 2045

https://www.theguardian.com/environment/2026/sep/23/germany-commits-for-first-time-to-phasing-out...
7•novaRom•13m ago•1 comments

There Is No Now

https://artemandreenko.com/blog/there-is-no-now/
1•miovoid•13m ago•1 comments

Re: Skillsync

https://news.ycombinator.com/reply?id=49743049&goto=item%3Fid%3D49743049
1•ruiqitan•13m ago•0 comments

US preparing to ban exports of diesel fuel for 90 days

https://www.politico.com/news/2026/09/23/white-house-ban-diesel-01089294
2•ck2•14m ago•2 comments

Repligraphs: A Primitive for AI Provenance

https://lukechampine.com/repligraphs/
2•nemo1618•15m ago•0 comments

UK to fight Russian disinformation and push new global AI standards Burnham says

https://www.bbc.com/news/articles/c6rerlq99w30o
1•r721•16m ago•0 comments

I Launched a Product by Accident

https://rightbadcode.com/spotcheck/
1•speckx•16m ago•0 comments

Show HN: Reflex – a GGUF/CUDA inference engine tuned for cold-start latency

https://github.com/lateos-ai/reflex
1•leochong•16m ago•0 comments

Hacker News Site Layout

1•cdieck88•16m ago•3 comments

Ext-Turbovec: A Vector Index Inside Your PHP Process

https://eric.mann.blog/ext-turbovec-vector-search-php/
2•eamann•18m ago•0 comments

Muxly – Native Tmux for iPhone and iPad

https://muxly.sh/
2•msupuka•19m 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...