frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nathan Barley

https://en.wikipedia.org/wiki/Nathan_Barley
1•ustad•1m ago•0 comments

Leaky Language Models: Stealing Architecture and Inference Optimizations

https://arxiv.org/abs/2607.20723
1•sbulaev•2m ago•0 comments

The Hardest Way to Make a GIF

https://blog.willgrant.org/2026/07/23/the-hardest-way-to-make-gif.html
1•plaguna•3m ago•0 comments

Show HN: Continuum – switch AI coding agents without re-explaining your project

https://github.com/AnasNafees1802/continuum
1•AnasNafees101•4m ago•0 comments

The PImpl idiom and the C++26 std:indirect type

https://mariusbancila.ro/blog/2026/07/23/the-pimpl-idiom-and-the-cpp26-stdindirect-type/
2•signa11•6m ago•0 comments

Making a Watch from Scratch [video]

https://www.youtube.com/watch?v=-Hvn4-NMYg8
1•thunderbong•7m ago•0 comments

Supercooled kidneys have been transplanted into pigs in a "landmark achievement"

https://www.technologyreview.com/2026/07/23/1140765/supercooled-kidneys-have-been-transplanted-in...
2•joozio•8m ago•0 comments

A Pragmatic Approach to LLMs

https://gracefulliberty.com/articles/pragmatic-llms/
2•signa11•9m ago•0 comments

AMD's Instinct MI455X: Aiming for the Sun

https://chipsandcheese.com/p/amds-instinct-mi455x-aiming-for-the
2•ingve•10m ago•0 comments

Local Kubernetes on Mac: A Multi-Node Cluster with UTM

https://blog.qstars.nl/posts/macos-local-kubernetes-cluster-with-utm/
2•victorbrink•18m ago•0 comments

Open Erdos problems solved with the help of GPT-5.6 Sol

https://twitter.com/qiaoqiao2001/status/2080003441821163958
2•vhiremath4•18m ago•0 comments

Show HN: Tool to validate your HTTP-message-signatures-directory

https://sitedex.dev/tools/keycheck
3•zeppelin_7•19m ago•0 comments

SodaSlim Releases Updated 2026 Highlights Soda Slim Capsules Ingredient

https://finance.yahoo.com/healthcare/articles/sodaslim-releases-updated-2026-highlights-122400710...
3•tagysaly•22m ago•0 comments

The Effect of AI on Dunning Kruger

https://blog.zoller.lu/2026/07/dunning-kruger-after-ai-gap-that-no.html
2•thierryzoller•24m ago•1 comments

Japanese AI Robots Used to Replicate Skilled Confectioners' Abilities

https://japannews.yomiuri.co.jp/science-nature/technology/20260719-338181/
1•mushstory•25m ago•0 comments

BTL-3: A 27B open-weight agent model for agentic coding and structural tool use

https://huggingface.co/badtheorylabs/BTL-3
2•wertyk•28m ago•0 comments

Russia's businesses under strain from Ukraine's attacks on Wildberries

https://www.bbc.com/news/articles/cvg9n2y61w6o
4•slow_typist•32m ago•0 comments

Weather Is Happening

https://weatherishappening.com/
2•trainyperson•33m ago•0 comments

New upcoming allocation framework business

https://www.meridianallocation.com/
1•ohmygaoo•33m ago•0 comments

Span-First C#: Designing Around Span<T>

https://slicker.me/c_sharp/span-first.html
1•pjmlp•34m ago•0 comments

SANA-Video 2.0

https://nvlabs.github.io/Sana/Video2/
2•ilreb•34m ago•0 comments

Treasury threatens sanctions, claims Moonshot distilled Anthropic's Fable

https://techcrunch.com/2026/07/22/treasury-threatens-sanctions-after-white-house-claims-moonshot-...
2•mark336•35m ago•0 comments

OldLander: An extension to make old Reddit more usable on phone

https://github.com/octonezd/oldlander
1•zdmgg•36m ago•1 comments

ZonePlan: A free global meeting planner for remote teams

https://zoneplan.net/global-meeting-planner/
1•gavinbuilds•38m ago•0 comments

Scientists find the secret of birdsong's 'spectacular diversity

https://www.bbc.co.uk/news/articles/cwy4eg5dpyzo
1•sarreph•39m ago•0 comments

SharedRoot; Escaping the Claude Cowork Sandbox

https://accomplish.ai/blog/sharedroot-escaping-claude-cowork-sandbox/
1•ilreb•49m ago•0 comments

Flux 3

https://bfl.ai/blog/flux-3
57•ThouYS•52m ago•9 comments

It's an Apple Lisa, on a FPGA

https://hackaday.com/2026/05/09/its-an-apple-lisa-on-a-fpga/
4•austinallegro•53m ago•0 comments

Codex Slides: open-source AI slide studio powered by Codex. Prompt, repo to deck

https://github.com/nexu-io/codex-slides
2•maxloh•55m ago•0 comments

Show HN: StudioWalls. A free portfolio site for artists

https://www.studiowalls.org/
1•veryhungryhippo•57m 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...