frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We're all getting good at not reading each other

https://rice.codes/blog/ab9b9e43-80f0-44a0-aa14-e99219bc7112/
1•yqhsms•1m ago•0 comments

Clean and Compress PDF Files on Mac

https://medium.com/@chris.ahrweiler/clean-and-compress-pdf-files-on-mac-93a6e3925f9d
1•docjojo•2m ago•0 comments

Show HN: I missed the moving blocks, so I built a real Linux disk defragmenter

https://github.com/gbin/defragger
1•gbin•2m ago•0 comments

Inside Próspera,, the libertarian utopia on a Caribbean island

https://www.abc.net.au/news/2026-08-22/honduras-prospera-libertarian-utopia-caribbean-roatan/1070...
1•tcp_handshaker•2m ago•0 comments

Paul Graham's Essays, as Audio

https://journal.daniellopes.dev/p/paul-grahams-essays-as-audio
1•danielvlopes2•2m ago•1 comments

The Nvidia-sized hole in US GDP statistics

https://epoch.ai/publications/the-nvidia-sized-hole-in-us-gdp-statistics
1•paulpauper•3m ago•0 comments

Polyamorous bird of prey 'single-handedly' reviving species

https://www.thetimes.com/uk/environment/article/montagus-harriers-breeding-au-britain-hklk56vw5
1•paulpauper•4m ago•0 comments

Ads in Apple Maps have officially begun rolling out

https://9to5mac.com/2026/08/25/apple-maps-launches-ads-on-iphone-heres-whats-new/
1•zof3•4m ago•0 comments

Ask HN:Can you find the perimeter of this figure on cover

https://www.amazon.com/dp/B0F4PBNZWF
1•min2bro•4m ago•1 comments

Building Anki Cards with Claude Code

https://segar.me/blog/posts/anki_cards_claude_code.html
1•speckx•6m ago•0 comments

A map for one reader – a bespoke GPS audio travel guide

https://networkedthought.substack.com/p/a-map-for-one-reader
1•houshuang•6m ago•0 comments

$125/month Premium seats on ChatGPT Business

https://help.openai.com/en/articles/8792828-chatgpt-business-overview
1•kaliszad•7m ago•0 comments

Respondus|Senior Software Developer|Remote|US Only

https://web.respondus.com/
1•kruczynski•10m ago•0 comments

The Instant team joins OpenAI

https://www.instantdb.com/essays/instant_team_joins_openai
1•gurjeet•10m ago•1 comments

Show HN: PocketCoded Py – Full CPython, pip, and data stacks offline on Android

https://play.google.com/store/apps/details?id=com.mkhokheli.pocketcodedpy&hl=en_US
1•Mkhokheli_Ndebe•11m ago•0 comments

Show HN: Ifso – A personal finance simulator for major life decisions

https://ifso.io
1•timer_interrupt•11m ago•0 comments

Show HN: FetchMark – An Offline-first read-later app with AI summaries

https://fetchmarkapp.com
1•fetchmark•15m ago•0 comments

FreeCORE, TrueNAS Core Continued

https://freecore.org/
1•NexRebular•15m ago•0 comments

Show HN: Acurite 433MHz Sensor to Weather Underground via RTL-SDR

https://github.com/lowerpower/wu-upload
2•mycal•15m ago•0 comments

Dolly Parton Has Died

https://en.wikipedia.org/wiki/Dolly_Parton
6•ColinWright•16m ago•2 comments

Show HN: Limitless Library – AI agents check first before starting from scratch

https://github.com/Univeracity/limitlesslibrary
1•ocdjeremy•17m ago•0 comments

Ask HN: Android OS with Linux level customisation

2•KinetiNode•18m ago•2 comments

Examining the AI Bear Thesis

https://ldstn.substack.com/p/a-critical-examination-of-the-ai
1•imaginaryunit01•18m ago•0 comments

Dolly Parton says she doesn't want to live on through AI after she dies (2023)

https://www.cbsnews.com/texas/news/dolly-parton-says-she-doesnt-want-to-live-on-through-ai-after-...
3•AftHurrahWinch•18m ago•3 comments

Towards a New House of Lords

https://marginalrevolution.com/marginalrevolution/2026/08/towards-a-new-house-of-lords.html
1•paulpauper•21m ago•0 comments

CATL now sells batteries online for $63/kWh [video]

https://www.youtube.com/watch?v=YpUwVqEIy20
2•thelastgallon•21m ago•1 comments

As print literacy fades, our perception of truth is warping

https://bigthinkmedia.substack.com/p/as-print-literacy-fades-our-perception
1•pseudolus•22m ago•0 comments

Is AI slowing you down?

6•charbz•23m ago•0 comments

Light Comes into the Room

https://lightcomesintotheroom.com/
1•bpierre•23m ago•0 comments

Andrew Tate exaggerates and did not own supercars in photos, his lawyers say

https://www.bbc.com/news/articles/c4grxr0e5gdo
4•chistev•23m 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...