frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beyond IP lists: a registry format for bots and agents

https://blog.cloudflare.com/agent-registry/
1•kwar13•32s ago•0 comments

The Hunger Games Begin

https://paulkrugman.substack.com/p/the-hunger-games-begin
1•throw0101a•1m ago•0 comments

Timeline of the most recent ChatGPT updates

https://techcrunch.com/2025/10/31/chatgpt-everything-to-know-about-the-ai-chatbot/
1•andrewstetsenko•1m ago•0 comments

Liberalism, Isis, and Toaster Nationalism

https://www.richardhanania.com/p/liberalism-isis-and-toaster-nationalism
1•paulpauper•1m ago•0 comments

Upgrading PostgreSQL and Citus for Enhanced Database Functionality

https://www.commandprompt.com/blog/upgrading-postgresql-and-citus-for-enhanced-database-functiona...
1•linuxhiker•1m ago•1 comments

Install PostgreSQL 18 on Ubuntu 25.10

https://www.paulox.net/2025/10/21/install-postgresql-18-on-ubuntu-25-10-questing-quokka/
2•todsacerdoti•2m ago•0 comments

Show HN: rstructor, Pydantic+instructor for Rust

https://github.com/clifton/rstructor
1•cliftonk•4m ago•0 comments

Pickleball popularity surge serves up spike in serious eye injuries

https://medicalxpress.com/news/2025-10-pickleball-popularity-surge-spike-eye.html
2•PaulHoule•5m ago•0 comments

Postmark

https://en.wikipedia.org/wiki/Postmark
1•tosh•5m ago•0 comments

Show HN: Flat Fee MVPs for 1000 dollars

1•hpen•5m ago•0 comments

Compare Video Models

https://twitter.com/shridharathi/status/1984315089265029628
2•johnsillings•6m ago•0 comments

Project Goals for 2025H2

https://blog.rust-lang.org/2025/10/28/project-goals-2025h2/
1•todsacerdoti•7m ago•0 comments

Show HN: Sebastian.run – Build mobile apps from prompts using AI

https://sebastian.run/
1•HansP958•8m ago•1 comments

Cosmos Updates, in Plain Text

https://retroburn.space
1•amiralul•9m ago•0 comments

Is BRMS Dead?

https://rulebricks.com/blog/decisioning-looks-different-now
2•sidgarimella•11m ago•0 comments

Vibrant Coral Reefs Discovered in Historic Exploration of Uruguay's Deep Sea

https://schmidtocean.org/vibrant-coral-reefs-discovered-in-historic-exploration-of-uruguays-deep-...
1•carride•12m ago•0 comments

Windows 11 issue, Task Manager won't close and duplicates, may hurt performance

https://www.windowslatest.com/2025/10/30/windows-11-kb5067036-issue-task-manager-wont-close-and-d...
1•taubek•12m ago•1 comments

Kennedy Center Ticket Sales Have Plummeted Since Trump Takeover

https://www.washingtonpost.com/entertainment/2025/10/31/kennedy-center-sales/
3•Bogdanp•13m ago•0 comments

Ruby on Rails is a hard to learn framework

https://old.reddit.com/r/rails/comments/1ol19ca/ruby_on_rails_actually_very_hard_to_learn/
1•nomilk•14m ago•0 comments

From Lossy to Lossless Reasoning

https://manidoraisamy.com/lossless-reasoning.html
1•QueensGambit•16m ago•0 comments

Study: AI in Europe Is Gradually Becoming Over-Regulated

https://www.technologylaw.ai/p/ai-in-europe-is-gradually-becoming-overregulated
2•pcaharrier•20m ago•0 comments

Nitro GEN OMEGA: Bringing the art style of "spaghetti anime" to life with UE5

https://www.unrealengine.com/en-US/developer-interviews/nitro-gen-omega-bringing-the-art-style-of...
2•ibobev•20m ago•0 comments

ReGIR – An advanced implementation for many-lights offline rendering

https://tomclabault.github.io/blog/2025/regir/
1•ibobev•21m ago•0 comments

Signs NYC Is Definancializing

https://twitter.com/arpitrage/status/1983951376141967589
2•paulpauper•22m ago•1 comments

Yes, There's a Parallel Parking Championship, and I Was a Contender

https://www.caranddriver.com/features/a69137759/parallel-parking-championship/
3•paulpauper•22m ago•0 comments

AI-assisted writing (without the Slop)

https://www.jampa.dev/p/writing-with-ai-without-the-slop
2•jampa•23m ago•0 comments

Zkenc: Witness Encryption for Quadratic Arithmetic Programs (QAP)

https://github.com/flyinglimao/zkenc
1•badcryptobitch•24m ago•0 comments

x86 architecture 1 byte opcodes

https://www.sandpile.org/x86/opc_1.htm
7•eklitzke•28m ago•0 comments

Windows 11 Computer's Hidden Spy: The Dark Truth About TPM Chips [video]

https://www.youtube.com/watch?v=t1eX_vvAlUc
1•tartoran•30m ago•0 comments

Semanticide

https://www.futureofjewish.com/p/how-to-steal-the-meaning-of-genocide
20•SanthiSithara•30m ago•6 comments
Open in hackernews

Resonant Learner – A Smarter Early Stop for Deep Models

https://github.com/Freeky7819/resonant-learner
1•Harmonic_Logos•7h ago

Comments

Harmonic_Logos•7h ago
Resonant Learner (Community Edition) introduces a new approach to training stabilization — Resonant Convergence Analysis (RCA) — which replaces traditional “patience + min_delta” early-stopping with a dynamic, frequency-based feedback loop.

Instead of watching loss values alone, RCA measures the β-amplitude and ω-frequency of validation oscillations to detect when learning transitions from “searching” to “settling”. The result: models converge faster with fewer epochs while maintaining (or improving) accuracy.

Highlights

Up to 2× faster training across CIFAR-10, MNIST, and BERT SST-2

Plug-and-play PyTorch callback (no framework changes)

Runs on Windows, Linux, and RunPod GPU (CUDA 12.4+)

Open-source under MIT license

Repo: https://github.com/Freeky7819/resonant-learner

Harmonic_Logos•7h ago
Thanks for checking this out! Here are a few quick details for anyone who wants to reproduce the results:

Setup

git clone https://github.com/Freeky7819/resonant-learner cd resonant-learner pip install -U pip setuptools wheel pip install -e . python verify_installation.py

Run examples

# CIFAR-10 baseline python examples/cifar10_rca.py --baseline

# CIFAR-10 with RCA python examples/cifar10_rca.py --use-rca 1

# BERT SST-2 baseline python examples/hf_bert_glue.py --task sst2 --baseline

# BERT SST-2 with RCA python examples/hf_bert_glue.py --task sst2 --use-rca 1

Typical results (Community Edition)

Dataset Baseline Epochs RCA Epochs Δ Compute Accuracy CIFAR-10 60 33 −45 % +0.6 % BERT SST-2 10 6 −40 % +0.4 % MNIST 20 12 −40 % ≈ same

The RCA module is open-core (MIT). SmartTeach + AutoCoach + Stillness are part of the upcoming Pro edition (meta-learning and damping layers).

Happy to answer questions, benchmark requests, or implementation details.