frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fable 5.1 is the new frontier on artificialanalysis

https://artificialanalysis.ai/models/claude-fable-5-1
1•pranshuchittora•1m ago•0 comments

Agentic Engineering at Zalando: A Snapshot

https://engineering.zalando.com/posts/2026/08/agentic-engineering-at-zalando-a-snapshot.html
1•theshrike79•2m ago•0 comments

DeepSeek-V3: From Roofline to Reality

https://deepseek-v3.ezyang.com/index.html
1•wavelander•3m ago•0 comments

Neon: Autoscaling Lakebase Postgres

https://www.databricks.com/blog/autoscaling-lakebase-postgres
1•shenli3514•5m ago•0 comments

A (UK) Open Banking API for Personal Use: Meet Endute Connect

https://endute.com/blog/open-banking-api-for-personal-use
1•willx86•5m ago•0 comments

Introducing Muse Voice Transcribe

https://research.meta.ai/blog/introducing-muse-voice-transcribe
1•lrae•5m ago•0 comments

Murphi: AI-native healthcare workflows, embedded or ready to use

https://murphi.ai/
1•welsenesbros•9m ago•0 comments

WTF Ist Intelligence?

https://wirres.net/articles/wtf-ist-intelligenz
1•doener•9m ago•0 comments

Ask HN: What full workflow / process have you tried to automate with AI?

2•top_rooster•10m ago•0 comments

Linode's $5 Nanode Held Up on Retest – With One Important Caveat

https://webbynode.com/articles/linodes-5-nanode-held-up-on-retest
1•gsgreen•10m ago•0 comments

Dyson has launched the CameraJet, its first electric toothbrush

https://discover.dyson.com/en-ca
1•amarbirsingh•11m ago•0 comments

Legibility of Effort

https://eieio.games/blog/legibility-of-effort/
1•evakhoury•11m ago•0 comments

Modern Java: An In-Depth Guide from Java 8 to Java 21

https://medium.com/java-and-beyond/modern-java-an-in-depth-guide-from-version-8-to-21-by-akiner-a...
2•ejboy•11m ago•0 comments

ClickHouse Welcomes RunReveal

https://clickhouse.com/blog/clickhouse-welcomes-runreveal
2•karlmush•12m ago•0 comments

Apple Says OpenAI Is Destroying Evidence in Trade Secrets Case

https://finance.yahoo.com/technology/ai/articles/apple-says-openai-destroying-evidence-210352338....
6•devonnull•13m ago•0 comments

Celeris-1 Magnus

https://celeris.ai/celeris-1-magnus
1•marksully•14m ago•0 comments

Show HN: Phone Cigarette – Doomscrolling Dopamine Fix

https://isabisabel.com/phone-cigarette/
1•babel16•15m ago•0 comments

Neovim adds support for multiple cursors

https://github.com/neovim/neovim/commit/9a29622b545fc76c8b44d0e2b90f318a599eef39
1•ale•16m ago•0 comments

Show HN: Claude and ChatGPT need a datacenter. This runs on my phone

https://llmobi.pages.dev
1•12ziyad•16m ago•0 comments

Morning cancer treatment could boost chances of survival

https://www.thetimes.com/uk/healthcare/article/morning-cancer-treatment-survival-lp8hlccs3
2•9NRtKyP4•16m ago•0 comments

How I Publish Blogs from Telegram Using Cloudflare and GitHub

https://nigerianpickle.github.io/Blog/2026/09/01/how-i-publish-blogs-from-telegram-using-cloudfla...
1•nigerianpickle•18m ago•0 comments

Reconciling a term spread from two vendor yield series before trusting it

https://truthradar.xyz
1•brayden_jones•20m ago•0 comments

Upcoming changes to Rosetta support for Intel-based macOS apps

https://developer.apple.com/news/?id=w5ngl9k2
1•johnbehnke•21m ago•0 comments

Pi vs. OMP (Oh My Pi Agent)

https://composio.dev/content/pi-vs-omp
1•hantusk•22m ago•0 comments

Apple contacts management madness: losing and duplicating contacts at scale

https://keydiscussions.com/2026/09/01/apple-contacts-management-madness/
2•spenvo•22m ago•0 comments

Ish-AOK, ish resurrected with Claude

https://github.com/emkey1/ish-AOK
1•ICHx•23m ago•0 comments

Dyson Toothbrush

https://www.dyson.com/oral-care
1•7777777phil•25m ago•2 comments

ArsenalBio sheds most of staff in pivot to in vivo CAR-T

https://www.fiercebiotech.com/biotech/arsenalbio-sheds-most-staff-pivot-vivo-car-t
1•randycupertino•26m ago•1 comments

Bootleggers and Baptists

https://en.wikipedia.org/wiki/Bootleggers_and_Baptists
3•Teever•31m ago•0 comments

How does GPU recovery work with AMD GPUs on Linux?

https://timur.hu/blog/2026/how-does-gpu-recovery-work-on-amd-gpus-on-linux
1•speckx•32m 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...