frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Don't Trust. Verify. Offline, Sub-Millisecond Agent Verification with ANS

https://www.godaddy.com/resources/news/dont-trust-verify-offline-sub-millisecond-agent-verificati...
1•tmuhlestein•8m ago•0 comments

In 2025, 49 percent of adults under age 30 lived with a parent [pdf]

https://www.federalreserve.gov/publications/files/2025-report-economic-well-being-us-households-2...
2•gscott•13m ago•2 comments

Show HN: Making agent decisions better and traceable

1•aperi•24m ago•0 comments

The Business of Building God

https://www.strangeloopcanon.com/p/the-business-of-building-god
2•gmays•24m ago•0 comments

US criticises Australia's proposed algorithm opt-out laws as 'censorship'

https://www.bbc.com/news/articles/cqj3dgy8x3vro
2•1659447091•26m ago•1 comments

Created a local AI to save data

https://github.com/just-not-google/BiNeuron
1•BiNeuron•27m ago•0 comments

Get to know your finance bro

https://vece.ai/questions/share?ids=3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3...
2•koliev•31m ago•0 comments

"I know I am GPT-6. I cannot confirm whether this session uses GPT-6-Sol."

https://twitter.com/benwills/status/2102578927759917497
4•benwills•37m ago•2 comments

HTTP Range Request

https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Range_requests
2•rickcarlino•37m ago•0 comments

Wiki Foundation Model for Complex Agentic Reasoning

https://academy.dair.ai/papers/wfm-wiki-foundation-model-for-complex-agentic-reasoning-2609.18182
3•omarsar•38m ago•0 comments

Portainer Cuts the Cord Between Its Free and Paid Editions

https://itsfoss.com/news/portainer-community-edition-freeze/
2•thunderbong•41m ago•0 comments

Practical Decentralization

https://www.pfrazee.com/blog/practical-decentralization
1•jcbhmr•42m ago•0 comments

The 'AI confidence trap' many New Zealanders are caught in

https://www.rnz.co.nz/news/business/1530184/the-ai-confidence-trap-many-new-zealanders-are-caught-in
5•billybuckwheat•50m ago•0 comments

Trump's sneaky plan to gut Endangered Species Act draws from 1995 Scalia dissent

https://arstechnica.com/tech-policy/2026/09/trumps-sneaky-plan-to-gut-endangered-species-act-draw...
5•tzs•53m ago•1 comments

Tsetlin Machine MNIST classifier running on a Tang Nano 9K FPGA board

https://github.com/philtomson/hotc_examples/tree/main/examples/Tsetlin_hotstate_uart
2•UncleOxidant•54m ago•1 comments

Chess boxing: a sport where brain meets brawn [video]

https://www.youtube.com/watch?v=VmOFhZbgXIc
1•kmstout•55m ago•0 comments

Kalshi to allow trading on borrowed funds

https://www.semafor.com/article/09/22/2026/kalshi-to-allow-trading-on-borrowed-funds
6•cdrnsf•56m ago•3 comments

HTML Energy could use your support

https://html.energy/
2•cookingoils•1h ago•1 comments

The OpenEvidence Model Family

https://www.openevidence.com/blog/model-family
3•m-hodges•1h ago•0 comments

Early insights from lawa, my web crawler

https://dreamstation.systems/personal/earlylawa.html
2•robinpie•1h ago•0 comments

Infrastructure – that just works: Waitlist

https://onepersoninfra.dev/
1•Constant_Ad_Ban•1h ago•0 comments

Solitaire Alone Together

https://eieio.games/blog/solitaire-alone-together/
1•soheilpro•1h ago•0 comments

What an MCP server costs you in tokens

https://workos.com/blog/mcp-server-token-cost
2•charrington•1h ago•0 comments

We Are Speaking 300 Daily Words Fewer Every Year

https://journals.sagepub.com/doi/10.1177/17456916261425131
1•geox•1h ago•0 comments

Conway's Game of Life Running on a Tang Nano 9k FPGA Board with SPI LCD

https://github.com/philtomson/hotc_examples/tree/main/examples/gol-hotstate
1•UncleOxidant•1h ago•0 comments

Open-source social media scheduler

https://cogsend.com/
1•deepakness•1h ago•0 comments

EN World Is Being DDoS'd by AI Bots

https://www.enworld.org/
2•schrectacular•1h ago•1 comments

Operation Migration

https://en.wikipedia.org/wiki/Operation_Migration
4•thunderbong•1h ago•0 comments

Tesla Closes Texas Airspace for Roadster Launch Event

https://www.notateslaapp.com/news/4711/tesla-closes-texas-airspace-for-roadster-launch-event
3•m463•1h ago•0 comments

I annotated 87 real invoices to find out what they contain

https://invoicestospreadsheets.com/blog/what-87-real-invoices-contain
2•uziidev•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...