frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Floating Companion: Exploring Design Space for Soft Floating Robots for Indoor

https://www.youtube.com/watch?v=6qrZC1kF7Kc
1•RebootStr•33s ago•0 comments

AI-Notify – Context-aware terminal notifications for multitasking devs

https://medium.com/engineering-in-the-age-of-ai/ai-notify-context-aware-notifications-for-multi-t...
1•heliasdev•37s ago•0 comments

On-device Qwen benchmark: the 4B ties the 9B, and more findings

https://github.com/thomasblc/qwen-ondevice-bench
1•thomasblanc•2m ago•0 comments

Serena Williams Fit-Dex

https://serena-williams-fitdex.netlify.app/
1•bookofjoe•2m ago•0 comments

Identify Skin: AI Dermatology SaaS

https://identify.skin/en
1•GemsGame•3m ago•0 comments

The Law of Shitty Clickthroughs

https://andrewchen.com/the-law-of-shitty-clickthroughs/
1•achenet•3m ago•0 comments

Don't bring an AI detector to a deepfake fight: provenance over detection

https://www.lesswrong.com/posts/MBRNR5h9g6HGvAJDe/don-t-bring-an-ai-detector-to-a-deepfake-fight-...
1•Despoisj•4m ago•0 comments

Ask HN: Any objective research on which languages are best for AI agents?

1•mwigdahl•5m ago•0 comments

Microsoft's Design Tactics Still Undermine Browser Choice

https://research.mozilla.org/browser-competition/over-the-edge-2/
1•TangerineDream•6m ago•0 comments

Lets Encrypt ISRG Root X1 Cert T-Shirt

https://letsencrypt.org/donate/
1•moebrowne•7m ago•0 comments

Show HN: Town – Discord in a pixel town where the NPCs have skills

https://github.com/redplanethq/town
1•harshithmul•9m ago•1 comments

Commodore Amiga –=The City of Gold=- part 1

https://www.youtube.com/watch?v=s5q_2Wel7Xs
1•doener•9m ago•1 comments

Show HN: MDTool – free, client-side Markdown to PDF, HTML and Word (no uploads)

https://www.mdtool.dev
1•usmankhan45•10m ago•0 comments

Psyop Report #2 – Putting Fluoride in the Mental Waters

https://www.psyop.report/p/2-putting-fluoride-in-the-mental
1•OmarShehata•10m ago•0 comments

Ask HN: How do you keep up with news in a particular sector?

1•doruk101•13m ago•3 comments

Andi Roberts and "Communication Patterns Matter"

https://bytecode.news/posts/2026/07/on-andi-roberts-and-communication-patterns-matter
2•jottinger•13m ago•0 comments

Show HN: PocketJS – Solid/Vue JSX and Tailwind at 60fps on a 2004 Sony PSP

https://github.com/pocket-stack/pocketjs
1•doodlewind•14m ago•1 comments

Show HN: I built a tool that turns GitHub commits into posts

https://postezi.com
1•rudolfsrijkuris•14m ago•0 comments

An Update on Igalia's Layer Based SVG Engine in WebKit (Reducing Layer Overhead)

https://blogs.igalia.com/nzimmermann/posts/2026-07-14-lbse-conditional-layers/
2•bkardell•15m ago•0 comments

Auditing the Risk Claims of Distributional Reinforcement Learning

https://arxiv.org/abs/2607.11607
1•sbulaev•16m ago•0 comments

Ask HN: Using X vs. LinkedIn?

2•lalithaar•17m ago•0 comments

harper

https://github.com/automattic/harper
1•bookofjoe•17m ago•0 comments

Show HN: Chauffeur – One Click restore of your aplication Context

https://www.emaginasion.com/
1•dmaginas•18m ago•1 comments

U of Chicago law school bans laptops from classes amid AI backlash

https://www.the-independent.com/tech/laptop-ban-university-ai-backlash-b3013911.html
3•smurda•18m ago•0 comments

Ten Steps Towards Happiness (2015)

http://hintjens.com/blog:99
2•downbad_•18m ago•0 comments

Proof of Care in the Age of A.I

https://jacobfilipp.com/care/
3•jfil•19m ago•1 comments

Tensor Is the Might

https://zserge.com/posts/tensor/
1•eatonphil•19m ago•0 comments

One drum machine that everyone on the internet plays at once

https://app.loopclub.xyz/
2•mint_cloud•20m ago•0 comments

Pat Oliphant RIP

https://www.dailycartoonist.com/index.php/2026/07/13/pat-oliphant-rip/
3•ynac•21m ago•1 comments

OpenAI Renames Things, We Get the Support Tickets

https://mcprunbook.com/posts/chatgpt-apps-renamed-to-plugins.html
2•Aldipower•22m 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...