frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dissecting the Apple M1 GPU, the End

https://alyssarosenzweig.ca/blog/asahi-gpu-part-n.html
1•amemi•1m ago•1 comments

Meta's self-inflicted resignation-wave

https://blog.pragmaticengineer.com/the-pulse-metas-self-inflicted-resignation-wave/
3•andsoitis•13m ago•0 comments

48 Node B300 cluster live in 3-5 weeks

1•anwar19•13m ago•0 comments

What Is a "Jeopardy "-Worthy Computer (2015)

https://today.umd.edu/what-jeopardy-worthy-computer-90e7a2a8-6faa-4ab2-95d3-c3a6d6efb20b
1•andsoitis•15m ago•0 comments

Why China is suddenly betting on e-fuels [video]

https://www.youtube.com/watch?v=IPpbrjyuQHI
2•thelastgallon•15m ago•0 comments

Show HN: Sift – a cross-platform Snaffler replacement

https://github.com/Stratus-Security/Sift
1•coj337•15m ago•0 comments

How researchers are teaching AI to learn like a child

https://www.science.org/content/article/how-researchers-are-teaching-ai-learn-child
1•andsoitis•18m ago•0 comments

Show HN: Check if your OTP/verification SMS or email arrived

https://github.com/flovoice53-tech/otp-watch
1•florin_builds•18m ago•0 comments

Show HN: Wattage – finds the tokens your Claude Code sessions wasted

https://github.com/faizannraza/wattage
1•faizanraza03•19m ago•0 comments

Meta Just Paid Nearly $17B to Write the Kid Safety Rules for Every Platform

https://www.techdirt.com/2026/08/26/meta-just-paid-nearly-17-billion-to-make-sure-it-gets-to-writ...
2•wrxd•20m ago•1 comments

FrankenMermaid. A deterministic, memory-safe Rust implementation of MermaidJS

https://frankenmermaid.com/
1•carnevalem•23m ago•0 comments

Show HN: CloudDM – One more small step toward safer database operations

https://github.com/ClouGence/open-cdm/releases/tag/v4.1.2
1•cloudcanalx•23m ago•0 comments

GoodSaaS – Discover useful SaaS products without the noise

https://goodsaas.xyz
1•its_ajseven•27m ago•0 comments

Ask HN: Do you also notice CNN's poor English?

1•mandeepj•28m ago•0 comments

PiLFS Linux from Scratch on the Raspberry Pi

https://intestinate.com/pilfs/
2•kristianpaul•30m ago•0 comments

Tragedy of the Commons

https://en.wikipedia.org/wiki/Tragedy_of_the_commons
2•num42•35m ago•1 comments

Humanity has the debate about AI consciousness backwards

https://economist.com/by-invitation/2026/08/20/humanity-has-the-debate-about-ai-consciousness-bac...
3•semiquaver•35m ago•1 comments

Keep an Eye Out on Chromium's Flatpak Experiment

https://itsfoss.com/news/experimental-chromium-flatpak-packaging/
1•losgehts•39m ago•0 comments

Trump to sign executive order on foreign equipment in U.S. energy infrastructure

https://cyberscoop.com/energy-department-cybersecurity-executive-order-rules/
2•WaitWaitWha•40m ago•1 comments

Ring camera founder says company will "lock" video

https://www.cbsnews.com/video/ring-camera-founder-lock-video/
1•pilingual•40m ago•1 comments

Security log analyzer for Caddy v2 with 26 attack categories

https://github.com/lenny-ts/caddy-analyzer
1•lenny-ts•43m ago•0 comments

Patches Provide for Faster In-Kernel ZSTD Due to Embarrassingly Bad Inefficiency

https://www.phoronix.com/news/In-Kernel-Zstd-BMI2-Probing
1•pella•44m ago•0 comments

Technical Writing Style Guide

https://pve.proxmox.com/wiki/Technical_Writing_Style_Guide
3•csmantle•47m ago•0 comments

Show HN: Ask a Monk

https://askamonk.online
1•13613288957•49m ago•0 comments

Show HN: Apache DataFusion Support for DuckDB's DuckLake

https://ducklake.select/2026/07/29/bringing-ducklake-to-datafusion/
1•eddietejeda•49m ago•0 comments

Kusama Yayoi Dies at 97

https://news.jp/i/1465528042000662661
33•phantomathkg•51m ago•5 comments

Turtle: A From-Scratch Browser Rendering Engine in Zig

1•coolwulf•52m ago•1 comments

Show HN: Browser automation with no chromedriver and no Node driver

https://github.com/angeldevmobile/Orion
1•usxr1515•54m ago•0 comments

Why Bar LCD Displays Are Interesting for Retail Display Design

https://duobond-display.com/news/custom-displays/528.html
1•Todorov•57m ago•0 comments

Google Search Rolling Out Google.com/Goto Tracking Parameters

https://www.seroundtable.com/google-search-goto-tracking-41957.html
1•carnevalem•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...