frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Performance Foundations of Parallel and Distributed Reasoning Language Models

https://arxiv.org/abs/2608.27046
1•matt_d•1m ago•0 comments

Sauron: A free and open source terminal development environment

https://github.com/mlolson/sauron/
1•LordHumungous•4m ago•1 comments

Show HN: Auto-Rig Web – Zero-click 3D humanoid rigging in a Web Worker

https://github.com/nff747/auto-rig-web
1•nff747•5m ago•0 comments

Ask HN: Is September 8th AGI Day?

1•rvz•6m ago•1 comments

Up to $40 btc everyhour claim

https://dropbtc.io/
1•ilaysyou•6m ago•0 comments

Canvas Browser

https://canvas-browser.com
1•bookofjoe•7m ago•0 comments

LG TV shown scanning LAN for third-party phones and other devices

https://arstechnica.com/gadgets/2026/09/lg-tv-shown-capable-of-tracking-user-activity-even-when-o...
5•Bender•11m ago•0 comments

Show HN: I found a weird old startup's LaserDisc

https://www.youtube.com/watch?v=AXOoyxisEMg
1•markchristian•11m ago•0 comments

Q&A with Mark Zuckerberg on Muse, the data center backlash

https://sources.news/p/mark-zuckerberg-meta-muse-ai-podcast-interview
1•utiiiD•11m ago•0 comments

EXtreme Go Horse (XGH) Process

http://brunomb.com/xgh/
1•variety8675•12m ago•0 comments

Colliding the Sum Checksum (2019)

https://mcpherrin.ca/2019/11/23/sum-collisions.html
1•mooreds•13m ago•0 comments

What nobody tells you about writing agent skills

https://newsletter.posthog.com/p/what-nobody-tells-you-about-writing
2•AntonZ234•14m ago•0 comments

How to manage a growing fleet of AI agents with Latitude

https://latitude.so/blog/how-to-manage-a-fleet-of-agents-with-latitude
1•mooreds•14m ago•0 comments

The Lottery of Life

https://substack.com/@rutgerbregman/note/c-332235472
1•higginsniggins•15m ago•0 comments

MCP Client Registration: Dinner Party or Nightclub?

https://fusionauth.io/blog/cimd-vs-dcr
1•mooreds•16m ago•0 comments

Hacking Cable: AI in post-exploitation operations

https://palisaderesearch.org/blog/hacking-cable
1•syumei•18m ago•0 comments

Show HN: Spatial memory for document OCR pipelines (zero dependencies)

https://github.com/aws-samples/sample-textract-field-memory
1•avnban•20m ago•0 comments

Stop making swap partitions–use swap files instead

https://gist.github.com/joshenders/c4960cec9c63a7b7d68ffa9543356c43
1•jenders•21m ago•1 comments

The Solo-Dev Ship Checklist – a 10-item pre-launch checklist for indie devs

https://merlin-ship-checklist.surge.sh
2•clawforger_mthx•21m ago•0 comments

Solo.io Pushes Agentic AI Governance to the Desktop: Open-Source Agentdesktop

https://techstrong.ai/articles/solo-io-pushes-agentic-ai-governance-to-the-desktop-with-open-sour...
1•CrankyBear•21m ago•0 comments

Running agents in a sandbox or VM is the wrong pattern

https://funky.dev/blog/running-agents-in-a-sandbox-or-vm-is-the-wrong-pattern
1•xij•22m ago•0 comments

Despite the chatter, AI pricing is not converging on a model

https://www.solvimon.com/blog/ai-pricing-not-converging-on-single-model
1•arnon•23m ago•0 comments

Refeeding Syndrome

https://en.wikipedia.org/wiki/Refeeding_syndrome
1•chistev•23m ago•0 comments

Show HN: An interactive visualization of Caribbean imperial history

https://contestedworlds.com/
1•jamesgpearce•24m ago•0 comments

Open Models Change the Economics of AI [video]

https://www.youtube.com/watch?v=rY0wnfFHYbs
1•gmays•24m ago•0 comments

A Topological Picture Book, Rendered

https://e-infinity.space/picture-book/
2•mathgenius•26m ago•0 comments

How I Built First-Party Analytics for a Personal Blog

https://gkoreli.com/first-party-analytics-for-a-personal-blog
1•gogakoreli•29m ago•0 comments

The DOJ's AI Fair Use Brief Is Correct, but from a DOJ That Has No Credibility

https://www.techdirt.com/2026/09/08/the-dojs-ai-fair-use-brief-is-correct-but-from-a-doj-that-has...
2•hn_acker•31m ago•0 comments

25 Years Since 9/11: 13 Numbers That Tell the Story

https://zeteo.com/p/25-years-since-911-13-numbers-that
1•abdelhousni•31m ago•0 comments

Why this month's Microsoft patch release is a doozy

https://arstechnica.com/security/2026/09/microsoft-patches-a-record-972-vulnerabilities-112-of-th...
1•canucker2016•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...