frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Students Skinned a Bear in a Dorm. Cornell Realized It Should Ban That

https://www.nytimes.com/2026/08/07/nyregion/cornell-student-bear-meat.html
1•7402•28s ago•0 comments

AI Interviews Are Moving Hiring into the Middle of the Night

https://ai-updates.net/ai-interviews-moving-hiring-middle-night/
1•ashurandi•1m ago•1 comments

You spend more when prices end in .99 (2018)

https://kenthendricks.com/99-cent-prices/
1•downbad_•2m ago•0 comments

Ask HN: New Projet Backup

1•dobibag•2m ago•0 comments

The Deslop Stack Fallacy: Why Style Rules Hurt Thinking Quality

https://kondasamy.com/blog/2026/deslop-stack-fallacy-style-rules-hurt-thinking/
1•kqr•5m ago•0 comments

Sanders Calls on Tech Giants to Pause Development of Out-of-Control AI

https://www.sanders.senate.gov/press-releases/news-sanders-calls-on-tech-giants-to-pause-developm...
1•ChrisArchitect•8m ago•0 comments

Hk ask: why I canymt post here

1•Akaoutar•10m ago•0 comments

IPython is all you need

https://nathancooper.io/blog/2026-08-10-ipython-is-all-you-need
1•coop57•10m ago•0 comments

Theo Jaffee on Becoming AGI-Pilled

https://www.thenewcritic.com/p/present-at-the-creation
1•ekluger•10m ago•0 comments

I built a private travel journal for iPhone

https://kfragkoulis.com/blog/building-travel-log/
1•konstantinosfr•12m ago•0 comments

I thought an LLM gateway was unnecessary. Then we added a second model provider

https://github.com/maximhq/bifrost/
1•Swapnoneel•13m ago•0 comments

South Korea to launch $3.5B chip fund, speed development of semiconductor hubs

https://www.reuters.com/world/asia-pacific/south-koreas-lee-wants-military-airbase-relocated-by-m...
1•giuliomagnifico•14m ago•0 comments

US court rules Meta, others must face lawsuits over social media addiction

https://www.reuters.com/world/us-appeals-court-allows-thousands-lawsuits-against-social-media-com...
1•1659447091•14m ago•0 comments

Hackers Take over Inflight WiFi

https://bsky.app/profile/acarsdrama.bsky.social/post/3msqkuoawxx2v
2•jaredwiener•17m ago•0 comments

QaDiT: A 160M text-to-audio DiT trained with just 18 dollars

https://huggingface.co/QuarkML/QaDiT
1•sidharthGN•21m ago•0 comments

Semiconductor Fabrication Basics – Home Chip Lab Tour [video]

https://www.youtube.com/watch?v=TrmqZ0hgAXk
2•binyu•21m ago•0 comments

Young Men Are Being Sold Fake Belonging and Fake Wealth Online

https://www.equimundo.org/the-grift-economy-press-release/
3•DeepLogin•22m ago•0 comments

We're not done with point clouds

https://claytonwramsey.com/blog/mvt/
1•claytonwramsey•22m ago•0 comments

A Mystery Avenger Escalates a War Against Scotland's Parking Police

https://www.wsj.com/world/europe/a-mystery-avenger-escalates-a-war-against-scotlands-parking-poli...
1•bookofjoe•23m ago•1 comments

KitBash Acquires ArtStation and Sketchfab

https://magazine.artstation.com/2026/08/kitbash-acquires-artstation-and-sketchfab/
1•A_D_E_P_T•23m ago•0 comments

A.I. Agents Are Taking Online Courses for Cheating Students

https://www.nytimes.com/2026/08/10/us/ai-cheating-online-degrees.html
1•vinni2•24m ago•0 comments

Deleted UK Government code repositories

https://github.com/uk-gov-mirror/deleted-repo-report
1•robin_reala•25m ago•0 comments

Why Are Rivers So Mathematical?

https://www.quantamagazine.org/why-are-rivers-so-mathematical-20260810/
1•pykello•25m ago•0 comments

Zuckerberg makes a case for unleashing Pandora's box

https://www.theverge.com/tech/977395/meta-mark-zuckerberg-superintelligent-ai-ramble
1•ashurandi•26m ago•2 comments

CVE-2026-65400: Apple macOS Screen Sharing authentication bypass

https://support.apple.com/en-us/148170
2•lasagnafan•27m ago•0 comments

New Projet Bck

1•dobibag•29m ago•0 comments

Kalshification: Gambling on Anything and Everything

https://illegal.solutions/posts/gambling_forever
1•totallygeeky•29m ago•1 comments

Geek Fighter – 2d fighter game

https://geek-fighter.vercel.app/
1•tareqismail•30m ago•0 comments

Rust SIMD on the GPU

https://www.vectorware.com/blog/simd-on-gpu/
2•sagacity•31m ago•0 comments

Over 415 Hours of annotated and segmented robotics data

https://demo.shotwell.ai/demo-padlock
2•aliabd•32m 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...