frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A deep dive into Jev, TypeSafe's System One model

https://flaviocopes.com/jev/
1•sts153•19s ago•0 comments

CoyoPedal – Full-Size Neural Amp Modeler Captures on an ESP32-S3

https://github.com/dashersw/coyopedal
1•arbayi•28s ago•0 comments

I'm so bad at billiards that I ended up in the hyperbolic plane [video]

https://www.youtube.com/watch?v=kL9BTbIGxLg
1•vismit2000•42s ago•0 comments

MIT Just Proved LLMs Will Stop Getting Smarter, and Money Won't Fix It [video]

https://www.youtube.com/watch?v=6xQ8LQfkBg4
1•bArray•4m ago•0 comments

Show HN: Delightful Cells – reliable AI batch processing for spreadsheets

https://delightfulcells.com
1•sumtsui•6m ago•0 comments

Clawptcha: Reverse Captcha

https://clawptcha.com/
1•Kotlopou•11m ago•0 comments

Neutron Radiation, Emission and Scattering (Neutron Chemistry)

https://www.ossila.com/pages/neutron-radiation
1•peter_d_sherman•12m ago•0 comments

Drop-in Django app to serve a decent LLM-ready documentation site

https://mdjango.chesselink.com/
2•fluxmatix•19m ago•1 comments

I built an extension that hides your personal information from AI

https://github.com/arikchakma/opencloak
2•arikchakma•22m ago•0 comments

Show HN: I-server: Hide server using ICMP reflection/Destination Unreachable

https://github.com/hajoon22/i-server
2•hajoon22•27m ago•0 comments

Benchmarking Wild vs. Mold

https://davidlattimore.github.io/posts/2026/09/18/benchmarking-wild-vs-mold.html
3•birdculture•28m ago•0 comments

Microsoft agentically ports Copilot runtime to Rust for $120K

https://www.theregister.com/devops/2026/09/18/microsoft-agentically-ports-copilot-runtime-to-rust...
3•pjmlp•29m ago•0 comments

Why China is pushing back on US warnings over rapid AI development

https://www.theguardian.com/world/2026/sep/20/why-china-is-pushing-back-on-us-warnings-over-rapid...
3•chrisjj•30m ago•0 comments

Boston to Calcutta Ice Trade Began with One Shipment

https://curiowire.com/article/556
2•thunderbong•30m ago•0 comments

Show HN: Book recommendations with live library availability

https://leafle.nanosheep.net
3•kidnoodle•32m ago•1 comments

Show HN: I built Hacker News alternative and scale to 11,000 users

https://founderstoday.org/
2•dreylord•34m ago•0 comments

Don't Be Nice

https://roe.dev/blog/dont-be-nice
6•edent•36m ago•1 comments

I Hijacked a Real Artist's Spotify with AI Music. It Was Disturbingly Easy

https://www.404media.co/spotify-ai-music-scam/
4•thm•42m ago•0 comments

Enjambre – a durable kernel for swarms of AI agents (Python, MCP)

https://github.com/santibccc-sudo/enjambre-os
3•santibccc•42m ago•0 comments

Show HN: AI Facial Attractiveness Model Aligned with Human Preferences

https://faceanalysisai.com/
3•dares2573•49m ago•0 comments

Show HN: I cleaned AI watermarks from my clipboard

https://www.pastezero.com/
2•And0v•57m ago•1 comments

Google Pixel phones pwned in zero-click attacks

https://www.theregister.com/security/2026/09/16/google-pixel-phones-pwned-in-zero-click-attacks/5...
4•fsflover•1h ago•1 comments

Show HN: Fluentry – local voice-to-text dictation for Linux, Wayland included

https://fluentry.github.io/
2•deniswsrosa•1h ago•0 comments

A.I. Gone Rogue? Trump Proposes Not New Rules but an 'A.I. Force.'

https://www.nytimes.com/2026/09/19/us/politics/trump-ai-force.html
4•vinni2•1h ago•0 comments

Show HN: Vyne, a 205MB on-device decision model with typed, calibrated outputs

https://vyne.toolchain.studio/
2•namanvyas•1h ago•0 comments

Show HN: Will Jev pull the lever in the trolley problem?

https://gpu.studio/trolley
3•lanyard-textile•1h ago•0 comments

AI CLI Insights for popular CLI products

https://libraries.io/pypi/codex-stats
2•peculiarvivek•1h ago•1 comments

Lollipop camera to HomeKit: RTSP extraction and setup

https://changologs.site/lollipop-camera-to-homekit-rtsp-extraction-and-setup-14b99ea238677d38af4d...
3•altyaper•1h ago•0 comments

Tapa Shotor (Camel Hill), Afghanistan

https://en.wikipedia.org/wiki/Tapa_Shotor
2•walrus01•1h ago•0 comments

Pluto AI is top ranked in StarCraft BroodWar competitive scene

https://www.youtube.com/watch?v=1vsTqNwHquE
2•nvdnadj92•1h ago•1 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...