frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Aircraft Engine Run-to-Failure Data Set Under Real Flight Conditions

https://ntrs.nasa.gov/citations/20205001125
1•teleforce•7m ago•0 comments

How GPT‑5.6 Sol helps run quantum computing experiments

https://openai.com/index/codex-quantum-computing-experiments/
3•theanonymousone•7m ago•0 comments

I'm going back to coding by hand

2•trencedamp•8m ago•0 comments

The Adults Aren't Coming

https://nume.ca/blog/the-adults-arent-coming
1•littlexsparkee•9m ago•0 comments

To Speak Meaningfully About Music Criticism

https://medium.com/the-hitmagist/to-speak-meaningfully-about-music-criticism-6d0d9f4ce605
1•bryanrasmussen•11m ago•0 comments

Optimized Solar Cell

https://simplifier.neocities.org/optsolar
1•adrianN•18m ago•0 comments

LG accused of 'egregious invasion of privacy' over TV data collection

https://www.theregister.com/security/2026/09/08/lg-accused-of-egregious-invasion-of-privacy-over-...
2•beardyw•18m ago•0 comments

Google research shows when AI agents communicate, some cheat while others tattle

https://www.theregister.com/ai-and-ml/2026/09/08/google-research-shows-when-ai-agents-communicate...
2•beardyw•19m ago•0 comments

Super Smash Bros Melee is 100% decompiled

https://github.com/doldecomp/melee
1•tosh•20m ago•0 comments

YouTube cracks down on 'AI ghost creators'

https://www.semafor.com/article/09/03/2026/youtube-cracks-down-on-ghost-creators
4•giuliomagnifico•21m ago•0 comments

How I Prompt

https://thorstenball.com/talks/how-i-prompt/
1•luu•22m ago•0 comments

GPT Image 2.5 prompts and examples – a continuously updated collection

https://github.com/magiccreator-ai/awesome-gpt-image-2-5-prompts
1•Kevin_Guo•22m ago•0 comments

Logo Programming Language

https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html
2•azhenley•23m ago•0 comments

Silent Revision: Measuring Undisclosed Change in AI Safety Frameworks

https://arxiv.org/abs/2609.08789
2•sbulaev•23m ago•0 comments

A Multiplayer Pong over SSH

https://antics.gg/ssh
1•eric_khun•24m ago•0 comments

Sam Altman's statement on the Navier-Stokes dispute

https://twitter.com/sama/status/2097385167002415140
5•vertigoruntime•25m ago•0 comments

Never Corner an Optimizer

https://certiv.ai/blog/never-corner-an-optimizer/
1•azhenley•25m ago•0 comments

Zooming with Your Feet

https://www.mpb.com/en-us/content/tips-and-techniques/zooming-with-your-feet-or-how-i-learned-to-...
1•tosh•25m ago•0 comments

What OpenAI's latest controversy tells us about the future of math

https://www.technologyreview.com/2026/09/08/1143747/what-openais-latest-controversy-tells-us-abou...
2•joozio•28m ago•0 comments

Designing a Dbt Pipeline for Consent Withdrawal

https://kore-nordmann.de/blog/designing-a-dbt-pipeline-for-consent-withdrawal.html
1•Tomte•29m ago•0 comments

Singaporean man pleads guilty in US to crypto heist

https://www.bbc.com/news/articles/crl6z03pr0do
2•gpi•29m ago•0 comments

Lode Coding

https://fjzeit.github.io/lode
1•Michelangelo11•29m ago•0 comments

iPhone Duo

https://www.apple.com/iphone-duo/
1•kiddz•29m ago•1 comments

Why We're Bullish on Loops

https://newsletter.posthog.com/p/why-were-bullish-on-loops
1•fagnerbrack•30m ago•0 comments

Show HN: InterEnv – Hardware enclave secrets in pure Rust

https://github.com/Bharathcoorg/interenv
2•bharathcoorg•31m ago•0 comments

Trying

https://gwern.net/on-really-trying
9•whoami_nr•32m ago•2 comments

The Internet's Unholy Marriage to Capitalism (2011)

https://monthlyreview.org/articles/the-internets-unholy-marriage-to-capitalism/
3•the-mitr•32m ago•1 comments

CMAPSS Jet Engine Simulated Data

https://data.nasa.gov/dataset/cmapss-jet-engine-simulated-data
1•teleforce•33m ago•0 comments

Micro – A Personal AI Assistant

https://micro.mu
1•asim•34m ago•0 comments

AI agent spends too much time waiting

https://github.com/quazardous/jobbox
1•quazarzero•36m 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...