frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The map that keeps Burning Man honest

https://www.not-ship.com/burning-man-moop/
1•speckx•1m ago•0 comments

A representation model as a workaround for catastrophic forgetting in LLMs

https://gist.github.com/alexmorleyfinch/bc0ee96fb72e9aafbad045939b982efd
2•dreamforever•3m ago•0 comments

LCM: Lossless Context Management

https://arxiv.org/abs/2605.04050
2•Brajeshwar•5m ago•0 comments

The River Otter's Remarkable Comeback

https://www.rewildingmag.com/the-river-otters-remarkable-comeback/
1•surprisetalk•6m ago•0 comments

Show HN: After 15 years of lifting and spreadsheets, I built my own workout app

https://www.setsweat.com
1•josephmarkus•6m ago•0 comments

Reasons not to use Skype (2012)

https://stallman.org/skype.html
1•downbad_•7m ago•1 comments

Farmers get short-changed in our current food system

https://www.foodpolitics.com/2026/05/28473/
2•speckx•8m ago•0 comments

First Church of the Singularity: An AI Art Experiment

https://firstchurchofthesingularity.com/
2•FocusedPotato•9m ago•0 comments

Show HN: I built an SQL layer for a NoSQL database

2•cammasmith•10m ago•0 comments

Show HN: Linlore – Defending human existence, one question at a time

https://linlore.com/
2•calinf•10m ago•0 comments

Just a Man – Dave Lofts

https://www.youtube.com/watch?v=toqNuEE1zkw
2•keepamovin•12m ago•0 comments

Devenv 2.1: Nix with native support for zsh, fish, and nushell via libghostty

https://devenv.sh/blog/2026/05/07/devenv-21-nix-with-zsh-fish-and-nushell-via-libghostty/
2•domenkozar•12m ago•0 comments

Show HN: Open-source AI code review (AGPLv3, BYOK)

https://github.com/kodustech/kodus-ai
3•gamalinosqui•12m ago•0 comments

Show HN: AERF – receipts for AI agents, crypto-signed like cosign for evidence

https://github.com/aerf-spec/aerf
2•keertahacker•13m ago•0 comments

Gode Cookery – Authentic Medieval Recipes

http://www.godecookery.com/godeboke/godeboke.htm
2•Mr_Minderbinder•16m ago•0 comments

Show HN: Avoiding "if" makes Quicksort faster

https://easylang.online/blog/qsort
2•chrka•16m ago•0 comments

Show HN: Pomota – Pomodoro timer that forces breaks (Tauri, Rust+React)

https://github.com/p32929/pomota
2•heliskyr2•16m ago•0 comments

Comparing Sandboxing Approaches for AI Agents

https://www.docker.com/blog/comparing-sandboxing-approaches-ai-agents/
2•chmaynard•17m ago•0 comments

OpenAI's Data Agent and the S3 Gap

https://datachain.ai/blog/openai-data-agent-s3-gap
2•shcheklein•17m ago•0 comments

Git for AI Agents

https://github.com/regent-vcs/re_gent
4•doshay•18m ago•1 comments

How to design a closed-loop data platform from first principles

https://beyondthetraverse.substack.com/p/how-to-design-a-closed-loop-data
2•ericpsimon•19m ago•1 comments

What's Gone Wrong at GitHub?

https://leaddev.com/software-quality/whats-gone-wrong-at-github
3•chhum•19m ago•0 comments

NYMes – a modern alternative to classic NFTs

https://oc2mx.net/NYMe.html
2•Ch1ffr3punk•19m ago•1 comments

Encoding different messages at different video resolutions [video]

https://www.youtube.com/watch?v=UCBAqaT4SQc
2•exploraz•20m ago•0 comments

Taiwan Became the Most Perilous Geopolitical Chokepoint [video]

https://www.youtube.com/watch?v=lxmt7rz4DLQ
2•mooreds•20m ago•0 comments

Debt Has Always Been the Ruin of Great Powers. Is the U.S. Next?

https://www.wsj.com/politics/policy/debt-has-always-been-the-ruinof-great-powers-is-the-u-s-next-...
4•mooreds•21m ago•0 comments

The New El Niño Might Make 2027 the Hottest Year on Record

https://www.nytimes.com/2026/05/06/opinion/el-nino-climate.html
4•mooreds•21m ago•0 comments

The Buses Should Be Free

https://nicholasdecker.substack.com/p/the-buses-really-should-be-free
2•surprisetalk•22m ago•0 comments

Scientists Gave 'Aggressive' Fish Psychedelic Drugs. A Breakthrough Came Next

https://www.404media.co/fish-psilocybin-magic-mushrooms-study-psychedelics/
2•Brajeshwar•22m ago•0 comments

Cognitive Surrender – Addy Osmani

https://twitter.com/addyosmani/status/2052124873208799378
2•adrianthedev•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•11mo 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•11mo 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...