frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

BROCS: The framework for enterprise AI enablement

https://brocs.fyi
1•powvans•50s ago•0 comments

Stratum 1 PTP grandmaster and router for $150

https://opscode.io/posts/ptp-grandmaster-r5s-nanopi/
1•malcolmfrazier•1m ago•0 comments

Amlc – fhe compiler where the noise budget is a static value of the type sys

https://github.com/octra-labs/amlc
1•0x0ffh_local•2m ago•0 comments

Show HN: Snaketron – Competitive multiplayer Snake. Back after 14 years

https://snaketron.io
2•lopatin•4m ago•0 comments

Agents. Your Controls

https://gryph.sh/
1•kunalsin9h•5m ago•0 comments

Show HN: Nohtml.felixs.eu

https://nohtml.felixs.eu
1•felixseu•9m ago•0 comments

With the snip of a gene, scientists hope to erase high cholesterol for life

https://www.cnn.com/2026/08/28/health/gene-editing-cholesterol-study-wellness
2•bushwart•10m ago•0 comments

Agentic SQL for Free with Qwen3.8 27B and DuckDB

https://motherduck.com/blog/Agentic-SQL-for-Free-with-Qwen3.8-27B-and-DuckDB/
2•tosh•10m ago•0 comments

Has vibecoding fried your brain?

https://codeset.ai/fried
1•andre15silva•12m ago•0 comments

Google Maps Faces Fury for Caving to Trump

https://www.thedailybeast.com/google-maps-faces-fury-for-caving-to-trumps-lake-america-demand/
5•rayrey•14m ago•2 comments

Icelanders say no to restarting talks to join the EU

https://www.politico.eu/article/icelanders-say-no-to-restarting-talks-to-join-the-eu/
3•mikhael•15m ago•2 comments

European Commission Revives Push for Encryption Backdoors in ProtectEU Strategy

https://reclaimthenet.org/eu-protecteu-strategy-encryption-backdoor-law-enforcement
5•nickslaughter02•15m ago•1 comments

An interesting website, looks like AI companion but only voice

https://hers-site.vercel.app/
1•Jamessfks123•16m ago•1 comments

Show HN: Mktero – a source-linked Markdown reader for Zotero

https://github.com/tenglvjun/mktero
1•tenglvjun•17m ago•0 comments

2 Gen Z aerospace engineers to conduct first microgravity menstrual flow studies

https://www.fastcompany.com/91594318/two-gen-z-aerospace-engineers-will-conduct-the-first-menstru...
1•bookofjoe•17m ago•1 comments

Lexical laundering: The mainstreaming of antisemitic neologisms from 4chan

https://www.isdglobal.org/digital-dispatch/lexical-laundering/
1•instagraham•17m ago•0 comments

A game using sine waves instead of assets [video]

https://www.youtube.com/watch?v=Qr3VsZYQy4s
2•VorticonCmdr•18m ago•0 comments

The Problem with Left-Wing NIMBYism [video]

https://www.youtube.com/watch?v=tvTa-GXKxak
1•softwaredoug•18m ago•0 comments

Terafab or Terrible Fad

https://noisebuffer.com
2•noisebuffer•19m ago•0 comments

Very Perilous: A sword wounds compendium by the surgeon Ravaton

https://hemamisfits.com/2020/04/02/very-perilous-a-sword-wounds-compendium-by-the-surgeon-ravaton/
2•bushwart•19m ago•0 comments

A lightweight Git CLI extension that adds S3:// support

https://robertpitt.github.io/git3/
2•robertpitt•22m ago•1 comments

Kekdksbdn

1•uieuduurj•22m ago•0 comments

China's robots race ahead

https://www.theverge.com/tech/986167/china-humanoid-robot-games-race
2•Brajeshwar•23m ago•2 comments

ReactOS 0.4.16

https://reactos.org/project-news/reactos-0416-released/
2•birdculture•23m ago•0 comments

Own Your Intelligence: A How-To Guide

https://twitter.com/sonyatweetybird/status/2089390902162895350
1•gmays•24m ago•0 comments

Rust flight controller for the M5Stack Stamp Fly

https://github.com/staszewski/stampfly-rust/tree/main
2•kamilstaszewski•24m ago•0 comments

Real Fly Brain – chase and squash bugs with your cursor

https://www.realflybrain.com/
1•logicallee•24m ago•0 comments

Show HN: Spewer – Delegate Codex/Claude tasks to cheaper models

https://github.com/modiqo/spewer
1•conikeec•26m ago•1 comments

Employers Are Making Job Candidates Jump Through Hoops to Prove They're Real

https://www.wsj.com/lifestyle/careers/remote-job-interview-applications-fraud-c9022cbe
1•bryan0•26m ago•1 comments

Tell HN: HN's IPv6 address is down

2•nneonneo•31m 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...