frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

India's Dedicated Freight Corridor's last mile challenge

https://finshots.in/archive/the-dedicated-freight-corridors-last-mile-challenge/
1•vismit2000•8m ago•0 comments

Mouse

https://github.com/mousedev/mouse-harness/tree/main
1•Aeroi•8m ago•0 comments

CrofAI Is an OpenRouter Wrapper

https://kendell.dev/blog/crofaifalse/
1•wut42•10m ago•0 comments

Internet Guestbooks: The Rise, Decline, and Afterlife

https://curiouxify.com/internet-guestbooks/
1•mastazi•10m ago•0 comments

An open-source interactive 3D PC Anatomy explore what's inside a computer

https://pc-anatomy.vercel.app/
1•Zeruxe•10m ago•1 comments

Does Scaling Web-Video Pre-Training Help Real Robots Do Real Work?

https://www.rhoda.ai/research/scaling-web-video-pretraining
1•gmays•11m ago•0 comments

The Physical Agent Harness: a portable interface to persistent agents

https://rashidazarang.com/c/the-physical-agent-harness
2•rashidae•14m ago•0 comments

Air Force secretary acknowledges the US has weapons in space

https://abcnews.com/Politics/air-force-secretary-acknowledges-us-weapons-space/story?id=136437923
1•SanjayMehta•14m ago•0 comments

World AI Cooperation Organization

https://en.wikipedia.org/wiki/World_Artificial_Intelligence_Cooperation_Organization
1•soundworlds•15m ago•1 comments

Show HN: Day week calendar app inspired by the French Revolutionary calendar

https://github.com/OlegIGalkin/tendayweekcalendar
1•cantouch•17m ago•0 comments

US-China AI strategic planning

https://sinocism.com/p/us-china-strategic-ai-dialogue-said
1•neptunetriton•19m ago•0 comments

The harms of short-form video on the brain are starting to show

https://www.theguardian.com/commentisfree/2026/sep/14/zuckerberg-short-form-video-cognitive-harm
2•pizzaiolo•27m ago•0 comments

I worked at Google DeepMind. You should listen to the warnings about AI

https://www.theguardian.com/technology/2026/sep/14/google-deepmind-ai-warnings
4•gibspaulding•27m ago•0 comments

The Rise of the Forward Deployed Engineer – and How to Do the Job Right

https://www.latent.space/p/forward-deployed-engineer-best-practices
1•yarapavan•29m ago•0 comments

Exploring mathematics with your computer (1993)

https://archive.org/details/exploringmathema0000enge
1•vismit2000•31m ago•0 comments

Why is nobody signing up even though I launched an unlimited plan on my website?

2•petebay•31m ago•2 comments

Efficient capital allocation in media as it relates to catalog IP

https://sidecar-part-ii.danieldeboulay.com
2•deboulaymxf•33m ago•0 comments

National Security Agency launches historic restructuring

https://www.washingtonpost.com/national-security/2026/09/13/national-security-agency-launches-his...
6•punk_ihaq•35m ago•1 comments

OpenAI DevDay 2026

https://devday.openai.com
2•almyk•37m ago•0 comments

Tokenomics: Fable 5.1's reduced cache read makes it cheaper than Opus

https://skids.dev/blog/fable-cache-tokenomics/
3•ryanskidmore•39m ago•0 comments

Data Seeding in .NET

https://learn.microsoft.com/en-us/ef/core/modeling/data-seeding
1•Brysonbw•40m ago•0 comments

Ask HN: Taxes while living abroad as a US citizen

2•wnolens•40m ago•2 comments

Analysis: Why Rollback Netcode Is Better (2020) [video]

https://www.youtube.com/watch?v=0NLe4IpdS1w
1•CharlesW•41m ago•0 comments

Israeli Effective Altruism Firm Behind OpenAI, Anthropic, and Meta Cyberattacks

https://twitter.com/brianchau57/status/2099580981271318606
9•MrBuddyCasino•47m ago•0 comments

Show HN: Oversold.com – Analyze a stock in 30 seconds

https://oversold.com/
3•wolfman1•53m ago•0 comments

ICE Attacks Two U.S. Citizen Minors on Their Way to Enlist in Marines

https://newrepublic.com/post/215393/ice-attacks-us-citizen-minors-enlist-marines
9•HotGarbage•56m ago•0 comments

People We Meet Along the Way – The Story of April and Gary

https://rinaldoj.substack.com/p/the-people-we-meet-along-the-way-829
1•jrinaldo68•58m ago•0 comments

Newfound fossils are spilling Denisovan secrets

https://www.sciencenews.org/article/new-fossils-denisovan-secrets-china
1•yannoninator•58m ago•0 comments

Vibe Coding is the new Internet Dating

https://joecmarshall.com/posts/vibecoding-is-the-new-internet-dating/
2•flancrest•1h ago•0 comments

There are so many bones everywhere: The whale graveyards that transform deep sea

https://www.bbc.com/future/article/20260225-the-whale-graveyards-that-transform-the-deep-sea
1•blondie9x•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...