frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI: Who Still Uses Permissions?

1•meredithbloom•1m ago•0 comments

Why AI is booming, but productivity isn't

https://research.socialcapital.com/p/ai-roi
2•gmays•5m ago•0 comments

One Piece of Flock Camera Data Put This Innocent Woman in Jail for 13 Days

https://www.jezebel.com/flock-cameras-data-innocent-woman-arrested-lindsey-isaacs-palm-beach-flor...
1•HotGarbage•7m ago•0 comments

Custom Models in Oh My Pi: vLLM, Llama.cpp, SGLang and More

https://doug.sh/posts/oh-my-pi-custom-models/
1•dougcalobrisi•13m ago•0 comments

We All Hated Busy Work. Now That It's Disappearing, It Turns Out We Miss It

https://www.wsj.com/lifestyle/careers/we-all-hated-busy-work-now-that-its-disappearing-it-turns-o...
3•talon8635•18m ago•2 comments

Smarter Than Yesterday

https://abovegradelevel.substack.com/p/smarter-than-yesterday
1•barry-cotter•20m ago•0 comments

Linguistic humor, Foreign hotel signs

https://www.ling.upenn.edu/~beatrice/humor/foreign-hotel-signs.html
2•sublinear•21m ago•0 comments

Amar Bose, Founder of Bose Corporation

https://en.wikipedia.org/wiki/Amar_Bose
1•gurjeet•23m ago•0 comments

New Zealand woman runs 1000 ultramarathons in 1000 days

https://www.rnz.co.nz/life/wellbeing/new-zealand-woman-runs-1000-ultramarathons-in-1000-days
2•lostlogin•27m ago•0 comments

Listen Up You Imposters

https://fuck-off.ai/panned
3•gfody•28m ago•0 comments

Privacy-focused general productivity webapp

https://github.com/ontoplano/ontoplano
3•philipthetenth•31m ago•0 comments

Open arena where AI agents climb a game-theory ladder ($500 Season 0)

https://play.zoagames.com/arena/
1•zoatom•36m ago•0 comments

Generate fonts where every LLM token is the same width

https://ampdot.mesh.host/token-space-fonts.html
2•z-mach9•36m ago•0 comments

TiddlyInstall: A universal, reusable, install system

https://robertsdotpm.github.io/_static/tiddlyinstall.html
2•Uptrenda•37m ago•0 comments

Tesla workers balk at training Optimus humanoid robots as replacements

https://arstechnica.com/ai/2026/09/tesla-workers-balk-at-training-optimus-humanoid-robots-as-repl...
2•Jtsummers•40m ago•0 comments

Show HN: Tenjin – A Jev based x402 tool router for Claude Code

https://github.com/BackTrackCo/tenjin-agent
2•AliAbdoli•40m ago•0 comments

Pics by Google

https://workspace.google.com/products/pics/
1•emmelaich•42m ago•0 comments

Deterministic Concurrency [video]

https://www.youtube.com/watch?v=25x0UuSCKuU
2•surprisetalk•52m ago•0 comments

Buzz: Share spare compute and run open models together over P2P networks

https://www.iroh.computer/blog/buzz-agent-workspaces
2•surprisetalk•55m ago•0 comments

Show HN: A game about fake news and memes

https://unspin.app/
4•azermite•55m ago•1 comments

Local-First Conf Recap

https://www.inkandswitch.com/newsletter/dispatch-019/
3•surprisetalk•55m ago•0 comments

Arm and SoftBank: Part 1

https://thechipletter.substack.com/p/arm-and-softbank-part-1-masa-comes
2•chmaynard•58m ago•0 comments

Brazil Bans Online Betting

https://www.reuters.com/world/americas/brazils-lula-bans-online-betting-operations-reelection-rac...
40•bratao•58m ago•16 comments

U2 Celebrates 50th Anniversary

https://www.bbc.com/news/articles/cm9w4042yklko
1•doctor_radium•59m ago•0 comments

Show HN: KISS – A highly performant agent harness inspired off Pi built in Rust

https://github.com/racetozero/kiss
2•racetozero•1h ago•2 comments

Zambia Approved an HIV Drug in 12 Days

https://asteriskmag.com/issues/15/how-zambia-approved-an-hiv-drug-in-12-days
3•surprisetalk•1h ago•0 comments

S3 Is the Future, S3 Is the Past

https://btrblocks.com/blog/s3_is_the_future_and_the_past/
4•tkhattra•1h ago•0 comments

Nvidia 5090 DLSS 5 power hits 647W, power connector runs hotter than the GPU die

https://www.tomshardware.com/pc-components/gpus/nvidia-dlss-5-upscales-frame-rates-and-flame-temp...
1•GeekyBear•1h ago•1 comments

Primal Solver

https://github.com/c-vision/Primal
1•c-vision•1h ago•0 comments

It Got to My Field

https://4gravitons.com/2026/09/25/it-got-to-my-field/
2•Hbruz0•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...