frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DDRop: Memory Interposer Attacks on Confidential VMs by Dropping DDR5 Writes

https://ddropattack.eu/
1•jessegeens•47s ago•0 comments

Meta-analysis of the association between childhood maltreatment and depression

https://doi.org/10.1111/acps.13794
1•rendx•2m ago•0 comments

King Ludd

https://www.astralcodexten.com/p/king-ludd
2•jstanley•11m ago•0 comments

Pocket Bibles and AI

https://www.amytis.io/blog/insights-on-ai-from-the-reformation
2•nixlaz•11m ago•1 comments

Open Letter about the Mathathon

https://proofsandprompts.com/2026/09/10/open-letter-about-the-mathathon/
1•tirumaraiselvan•15m ago•0 comments

FastAPI-Crons – Cron jobs that live inside your FastAPI app

https://crons.darcode.dev
1•amai•20m ago•0 comments

Creating word recordings with AI: learning where to cut

https://freshteapot.net/writing/creating-word-audio-with-ai/
1•freshteapot•22m ago•0 comments

US Air Force secretary reveals deployment of on-orbit space control weapons

https://www.militarytimes.com/news/your-military/2026/09/14/us-air-force-secretary-reveals-deploy...
2•dustfinger•23m ago•0 comments

I Have to Bury My Talent in Yesterday

https://www.reddit.com/r/LocalLLaMA/comments/1wgii3h/deepseek_engineer_relections_on_rsi_burying_my/
2•deyiao•33m ago•1 comments

Show HN: Knecht, a tool for building software factories for agencies

https://knecht.works
1•samuelreichor•37m ago•0 comments

Challenging AI

https://jensrantil.github.io/posts/challenging-ai/
1•JensRantil•38m ago•0 comments

I built a free tool that turns your resume into a personal website

https://self.cv/en
1•javier_yc_new•40m ago•1 comments

'Decimated My Life': The Risks of Pushing the Limits for Clicks

https://www.nytimes.com/2026/09/12/us/influencers-social-media-algorithm.html
3•thm•41m ago•0 comments

Show HN: QuantSupport, a Rust-based quant library

https://github.com/jmelo11/quantsupport
1•jmelo11•42m ago•0 comments

Show HN: Back Me Up – Find papers that back your argument

https://backmeup.loomlabs.au
1•argilium•42m ago•0 comments

SkyForce UI – React and Tailwind UI Suite with an Offline Electron Builder

https://skyforceui.com/
1•alexandrubulacu•43m ago•0 comments

A metasearch engine and privacy-first multi-engine search aggregator

https://ethfata.com/
1•massimilianosal•43m ago•1 comments

Show HN: Spec sheets for humans – who you are and how to work with you

https://spec.md
1•allanmaeots•48m ago•0 comments

Trying to understand SR-1 Freedom

https://mceglowski.substack.com/p/trying-to-understand-freedom
2•calcifer•49m ago•0 comments

Study links low-arousal background music to healthier food choices in restaurant

https://www.nature.com/articles/s41538-026-01146-2
2•giuliomagnifico•50m ago•0 comments

Keeping Markdown canonical once decisions start referencing each other

https://github.com/FrancisMarzynski/operating-memory-public
1•francismarzynsk•51m ago•0 comments

OpenAI's SWE-bench harness relies on unisolated host Docker sockets

https://github.com/SWE-bench/SWE-bench/issues/144
1•amoriz•52m ago•0 comments

The Git Cheat Sheet

https://devopscycle.com/blog/the-ultimate-git-cheat-sheet
2•MrLA•54m ago•1 comments

Obsidian Vault to Enterprise Company Brain

https://www.ssp.sh/blog/from-obsidian-to-enterprise-company-brain/
2•interstingstuff•55m ago•0 comments

Adam Conover explains how YouTube ruined everything

https://www.theverge.com/podcast/991471/adam-conover-youtube-tv-media-union-labor-ai
2•DavideNL•56m ago•0 comments

The terminal should not own the work

https://lezli01.is-a.dev/vincent/docs/why/the-terminal-should-not-own-the-work.html
2•whatsthatandwhy•59m ago•1 comments

Osborne Computer's Bankruptcy and the Osborne Effect

https://dfarq.homeip.net/osborne-computers-bankruptcy-and-the-osborne-effect/
1•giuliomagnifico•1h ago•0 comments

Show HN: Control Claude Code from your Tesla's screen

https://teslacode.dev
1•kvakkefly•1h ago•2 comments

CSS Text-Box-Trim

https://developer.chrome.com/blog/css-text-box-trim
2•dsego•1h ago•1 comments

Pythoncall.jl – Python and Julia in Harmony

https://github.com/JuliaPy/PythonCall.jl
3•TheWiggles•1h 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...