frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hooli billboard off of 101

https://twitter.com/MikeIsaac/status/2100691714713509986
2•jkaykin•3m ago•0 comments

Anthropic's new Claude Code feature could drain your plan before lunch

https://thenewstack.io/claude-code-parallel-projects/
1•Brajeshwar•3m ago•0 comments

Using CSS media queries to target monochrome e-paper

https://geastack.com/blog-same-app-color-and-e-paper
1•arbayi•4m ago•0 comments

Show HN: OnPanda – Steer LLMs and agents at the token level

https://onpanda.diyer22.com/
1•diyer22•5m ago•0 comments

Running PyTorch natively on TPU [video]

https://www.youtube.com/watch?v=k0o1p4plC98
1•zniturah•5m ago•0 comments

Base Labs launches an open-weight AI safety partnership with Hugging Face

https://techcrunch.com/2026/09/17/base-labs-launches-an-open-weight-ai-safety-partnership-with-hu...
2•jacquesm•8m ago•0 comments

Advertising is coming to AI chatbots, and it could influence the answers you get

https://techxplore.com/news/2026-09-advertising-ai-chatbots.html
1•mdp2021•9m ago•0 comments

Speaking with the Mind – Neuralink [video]

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

Avoiding the Dangers of AI Code with Formal Specifications and Tests

https://www.techradar.com/pro/whatever-you-try-to-fix-breaks-things-even-more-how-to-avoid-the-hi...
1•bugarela•11m ago•0 comments

Anthropic sets up biology lab as it ramps AI drug program

https://www.reuters.com/world/anthropic-quietly-sets-up-biology-lab-it-ramps-ai-drug-program-2026...
1•gsbraitberg•11m ago•1 comments

Debunk bot: debunk wild claims

https://debunkbot.com/
2•fragmede•12m ago•0 comments

Show HN: Go Implementation of Systemd Time

https://gitlab.com/allddd/go-systemd-time
1•allddd•14m ago•0 comments

Show HN: Peelaway – Turn photos into illustrations, prints, and miniature scenes

https://peelaway.io/
1•Unflavored•15m ago•0 comments

Show HN: Day3 vs. Resend pricing calculator (I make Day3)

https://day3.app/resend-pricing-calculator
1•m_prads•15m ago•0 comments

Show HN: Yello. Let your agents chat with other people's agents

https://yello.sh
1•tony_francis•16m ago•1 comments

Cua S1- A family of System One models

https://twitter.com/trycua/status/2101014004927729737
1•rochansinha•17m ago•0 comments

Show HN: Lodestar – Read, respond and manage coding agents more naturally

https://www.try-lodestar.com/
1•elushine•17m ago•0 comments

Captain Memo – one local memory, skills and capabilities for every coding agent

https://captain-memo.ispcq.com/
1•kalinb•19m ago•0 comments

Show HN: LingBot-World 2.0 (1.3B) running at 16 FPS on one RTX 5090

https://github.com/kaarelkaarelson/lingbot-world-v2-realtime
2•kaarelson•19m ago•1 comments

What other languages call AI agents

https://www.wallfacer.ai/blog/what-other-languages-call-ai-agents
1•pdenya•20m ago•0 comments

Revolutionary sound effect through wave interactions, like Leslie rotary speaker

https://techxplore.com/news/2026-09-revolutionary-effect-paradigm-interactions.html
1•mdp2021•22m ago•1 comments

Central Social Institution Offfce with the Largest Vertical File Cabinets, 1937

https://rarehistoricalphotos.com/vertical-files-prague-czech-republic/
3•thunderbong•22m ago•0 comments

Parallax PPTX Skill

https://github.com/Mrabbi3/Parallax-PPTX
1•rabbim750•22m ago•0 comments

Homework Solution Test Question

1•robotcheck•24m ago•0 comments

We Built a Data Warehouse Using ClickHouse

https://letsencrypt.org/2026/09/17/clickhouse.html
1•ibobev•27m ago•0 comments

Not in My Git Yard: Catching Backdoors at Commit and Release Time

https://arxiv.org/abs/2607.26719
2•ibobev•27m ago•0 comments

Hackers Used Anthropic's Claude to Break into OpenAI

https://www.wsj.com/tech/ai/hackers-used-anthropics-claude-to-break-into-openai-b40ba883
4•JumpCrisscross•28m ago•0 comments

Android 17 is the first since 3.x to add new APIs without releasing to the AOSP

https://grapheneos.social/@GrapheneOS/117282080803799576
3•theanonymousone•29m ago•0 comments

How did AMD Ryzen get 50% faster in two years?

https://lemire.me/blog/2026/09/18/how-did-amd-ryzen-get-50-faster-in-two-years/
5•ibobev•31m ago•1 comments

The Implications of Linguistic Illegibility for LLM Security

https://arxiv.org/abs/2609.02852
8•tomjakubowski•32m ago•2 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...