frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Procura – Finance Manager

1•snitchiest•8m ago•0 comments

Land recovery of China's Zhuque-3 reusable rocket first stage completed [video]

https://www.youtube.com/watch?v=lRk0iKGRHGo
2•hggh•9m ago•0 comments

Fraud Is a Relationship Problem, Not a Data Volume Problem

https://memgraph.com/blog/fraud-is-a-relationship-problem
1•taubek•14m ago•0 comments

Tragically, as many as 9625 out of every 10k individuals may be neurotypical

https://erikengdahl.se/autism/isnt/
10•verisimi•20m ago•1 comments

The Last Generation of Mathematicians? [video]

https://www.youtube.com/watch?v=6uIJdXmB4vE
1•soupspaces•25m ago•1 comments

A 2026 Survey of Rust GUI Libraries

https://blog.wybxc.cc/blog/rust-gui-survey-2026/
2•birdculture•26m ago•0 comments

Principles of dependent type theory [pdf]

https://www.danielgratzer.com/papers/type-theory-book.pdf
2•fanf2•27m ago•0 comments

The Cool Things of Gleam

https://a.baez.link/3mtdbbp2dmc27
1•signa11•27m ago•0 comments

The lost airports of SimCity 3000 (2002)

https://web.archive.org/web/20021204030618/http://www.sc3000.com/knowledge/showarticle.cfm?id=091...
2•Lammy•29m ago•0 comments

Milky Way's fastest star orbits a black hole so close, it feels its spin

https://www.eso.org/public/news/eso2612/
1•thunderbong•30m ago•0 comments

Remindher

https://remindher.app/
1•adibenely•31m ago•0 comments

Space Sunshade

https://en.wikipedia.org/wiki/Space_sunshade
1•num42•32m ago•0 comments

Every Tech Bubble Obeyed the Same Rule. AI Is Next [video]

https://www.youtube.com/watch?v=KJxfSIvv920
1•mgh2•33m ago•0 comments

PureLiFi Debuts 10 Gbps "Connectivity DNA" and Bridges the 5G Gap

https://www.purelifi.com/purelifi-mwc-2026/
1•zeristor•35m ago•0 comments

Contextual News Search APIs: A Deep Comparison for AI, RAG, and Research

https://github.com/free-news-api/news-search-api-comparison
10•ermanos12•38m ago•0 comments

Nobody Explained the Schrödinger Equation Like This [video]

https://www.youtube.com/watch?v=X-q2eZVhff8
3•peter_d_sherman•39m ago•0 comments

VQL-Artifact.yaml

https://github.com/lexs201992-gif/Project-LION-Longcheer-Integrated-Overlay-Network-Virtualizaci-...
1•lexs201992-gif•47m ago•1 comments

Natural Number Game

https://adam.math.hhu.de/#/g/leanprover-community/nng4
1•it4rb•51m ago•0 comments

The next GitHub is not worth winning

https://davidpoblador.com/blog/the-next-github-is-not-worth-winning.html
1•serious_angel•51m ago•1 comments

Wiring up seven ESP32s to create a ~0.4B LLM

https://www.xda-developers.com/someone-wired-up-seven-esp32s-to-create-a-04b-llm-and-so-can-you/
4•epestr•55m ago•0 comments

Orelon – AI Video Generator for Cinematic Creation

https://orelon.ai/
1•duanhjlt•1h ago•0 comments

I built a tool to generate Cornell notes from YouTube videos

1•cristyg0101•1h ago•1 comments

Mojo by Example

https://ruhati.net/mojo/
3•ivell•1h ago•0 comments

Vale: Linter for Prose

https://github.com/vale-cli/vale
1•saikatsg•1h ago•0 comments

Ksumiyo – AI music generation with producer-level controls

https://www.ksumiyo.com
1•umangbhardwaj•1h ago•0 comments

The Python documentation is now available in Russian

https://blog.python.org/2026/08/the-python-documentation-is-now-available-in-russian/
1•runningmike•1h ago•1 comments

The Zen of AI

https://www.dtlarson.com/zen
2•derek-larson•1h ago•0 comments

A Test for AI Consciousness

https://gruhn.me/blog/2026-08-16/
1•saikatsg•1h ago•0 comments

Kestrel – I built a 900 KB macOS browser because Chrome ate my 8 GB Mac

https://github.com/bishosilwal/kestrel-browser
1•bisho_silwal•1h ago•1 comments

ISO 24495 [pdf]

https://cdn.standards.iteh.ai/samples/78907/d194fac21d6a45f38bfcfec9657f7498/ISO-24495-1-2023.pdf
1•saikatsg•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...