frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Lattice Gazette

https://lattice-gazette.pages.dev/
1•measurablefunc•5m ago•0 comments

Show HN: AI Adoption Survey (Census)

https://www.crawlspider.com/pages/ai-adoption-rate
1•njx•5m ago•0 comments

Can the Far Right Be Deradicalized? [video]

https://www.youtube.com/watch?v=aHnGZ8PDDFY
1•PorciiVorbesc•6m ago•0 comments

Show HN: Jevals – replacing LLM judges with typed Jev decisions

https://github.com/openlayer-ai/jevals
4•gbayomi•13m ago•0 comments

What Happened to the Snowden Archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
6•EXHades•17m ago•0 comments

30 years after Civ2, Eivind IV built his own 4X game (Genesis)

https://forums.civfanatics.com/threads/30-years-after-civ2-i-finally-built-my-own-4x-game-genesis...
1•JohnHammersley•19m ago•2 comments

Google's Open Agentic Orchestrator

https://agentexecutor.io
10•blazarquasar•20m ago•1 comments

Computers Add Numbers

https://www.youtube.com/watch?v=QZuk1uZeIJs
1•dadawei•22m ago•0 comments

Not all AI workers think the tech could kill everyone

https://www.bbc.com/news/articles/cm5y7qj54klpo
2•Lyngbakr•31m ago•0 comments

Noam Brown – Agent swarms, alignment, & recursive self-improvement

https://www.dwarkesh.com/p/noam-brown
1•gmays•34m ago•0 comments

Ask HN: What Inspires You to Persevere?

1•chistev•34m ago•2 comments

Show HN: Mini-Runbot – Ephemeral Odoo Enviroments Using Python and Docker

https://github.com/rafnixg/odoo-platform-ephemeral-environment
1•rafnixg•34m ago•0 comments

Autopatch

https://en.wikipedia.org/wiki/Autopatch
1•psim1•35m ago•0 comments

Bill to Ban Private Equity from Owning Medical Practices

https://truthout.org/articles/warren-introduces-bill-to-ban-private-equity-from-owning-medical-pr...
31•paimapi•39m ago•5 comments

RayMate – free macOS AI launcher, Spotlight-like, with on-device dictation

https://raymate.app/
1•Knowledgeparrot•39m ago•0 comments

Line Scan Photos from MUNI Heritage Weekend in San Francisco

https://daniel.lawrence.lu/blog/2026-09-20-muni-heritage-weekend/
2•plun9•40m ago•0 comments

How to Find Internal Link Opportunities with Jev

https://screpy.com/blog/typesafe-jev-internal-linking-opportunities/
1•criexe•41m ago•0 comments

ProofWatch – Rumors and sources behind math and CS breakthrough claims

https://proof-watch.com/
1•imfinn•42m ago•1 comments

Motif – ongoing research via text message

https://app.motifresearch.ai/join/kunal-hn
2•kunal3•46m ago•0 comments

ComfyUI workflow that writes and performs a whole radio drama locally

https://github.com/jbrick2070/ComfyUI-OldTimeRadio
1•fluxuss•47m ago•2 comments

Ask HN: Do we still need code editors, or are Git clients enough?

1•TheSaifurRahman•49m ago•1 comments

BeOS-R5-Icons

https://github.com/jcherven/BeOS-r5-Icons
1•gjvc•52m ago•0 comments

Scanning Light Field Display [3D rotating display] [video]

https://www.youtube.com/watch?v=npmmEEqhVgU
1•mdp2021•52m ago•0 comments

The Dutch gangster that bought an African country

https://www.economist.com/interactive/1843/2026/09/18/cocaine-trafficking-sierra-leone
1•diego_moita•55m ago•0 comments

MultiTOOL Pro AI Kit Utilities

https://play.google.com/store/apps/details?id=multitool.pro2&hl=en_US
1•Newsyower•57m ago•0 comments

Show HN: Native Mac menu bar app for the Anker Prime 160W (local BLE)

https://github.com/djui/ankered
1•kreisquadratur•1h ago•0 comments

Nipple tattooist 'frustrated' by online censorship

https://www.bbc.com/news/articles/cx2z7ejn891o
17•harry_nutsachs•1h ago•20 comments

Periodic Table of North American Electrical Outlets

https://i.imgur.com/kl6BuTM.jpeg
2•CSMastermind•1h ago•0 comments

Mini-Microsoft Wins at Last

https://molochinations.substack.com/p/mini-microsoft-wins-at-last
1•domhudson•1h ago•0 comments

Warren Buffett is stepping down as chairman of Berkshire Hathaway

https://www.businessinsider.com/warren-buffett-stepping-down-chairman-berkshire-hathaway-2026-9
1•andsoitis•1h ago•1 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...