Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Talon – hands-free computer control (talonvoice.com)
    —discuss
  2. HomeBody: A Humanoid That Explores, Remembers, and Acts on Its Own (stanford.edu)
    —discuss
  3. Tell-Tale (Sailing) (wikipedia.org)
    —discuss
  4. Bitget blames North Korea for $387.5M crypto wallet raid (theregister.com)
    —discuss
  5. Scientists burned their own scrolls to unlock a 2k-year-old myster (sciencedaily.com)
    —discuss
  6. Coltrane's Shadow (tabletmag.com)
    —discuss
  7. Japan Suddenly Paused All Social Rules [video] (youtube.com)
    —discuss
  8. Making Oneself Obsolete with Slop (techrights.org)
    —discuss
  9. AI can solve math. But can it verify the answer? (lanzar.me)
    —discuss
  10. Cash Is King in San Francisco Real Estate. All-Cash Buyer Market at 20 Year High (sfstandard.com)
    1comments
  11. Nspawn.org: a Docker-like alternative for containers (nspawn.org)
    1comments
  12. Wild Buffalo Make a Comeback on the Canadian Plains (thewalrus.ca)
    —discuss
  13. "I didn't know about this shortcut until recently." (aresluna.org)
    —discuss
  14. Making a Pokémon fan trailer in 2 hours with Opus 5.5 (gist.github.com)
    —discuss
  15. So yeah it was written using AI (berthub.eu)
    —discuss
  16. Can't Publish Link
    —discuss
  17. Don't Worry About AI Making You Dumber, Nvidia CEO Says It Doesn't Matter (thegamer.com)
    1comments
  18. Become Worthless (To Tech Companies) (coryd.dev)
    1comments
  19. Why is website chat still a bubble? (github.com/standchat)
    2comments
  20. FreePascal WebAssembly (WASM) (freepascal.org)
    —discuss
  21. If we do not stop to help each other, what do we become? (codinghorror.com)
    —discuss
  22. Who Is Open Source About? (glyph.im)
    —discuss
  23. Show HN: A short study on where audiophile reviews disagree (audiowords.net)
    1comments
  24. New Europol proposal pushes for deregulation and more AI in policing (statewatch.org)
    —discuss
  25. A Byzantine mosaic you can rewind (echohive.ai)
    —discuss
  26. DeepSeek Elastic Compute (DSec) (arxiv.org)
    —discuss
  27. There's a new way to break RSA that's faster than anything we've seen before (arstechnica.com)
    1comments
  28. Ask HN: What would be the best local ASR model
    —discuss
  29. Show HN: Sixb, a TypeScript ontology framework for modeling your domain (sixb.ai)
    1comments
  30. 'Treated like a criminal:' Witnesses testify on abuse of Flock cameras (thecentersquare.com)
    —discuss

Show HN: A local alternative to Jev – 94% on Banking77

1 pointsby 1h agogist.github.com
0 comments
I’ve been experimenting with a local approach to some of the classification tasks people are using Jev for. This approach uses text embeddings + logistic regression

On Banking77, which contains 77 categories of banking support questions, I get 94.25% using bge-large-en-v1.5 for embeddings, and 93.28% with all-MiniLM-L6-v2 (only the classifier gets trained, the embeddings model stays unchanged). For comparison:

  Model                    Accuracy Size/training time
  - IntenDD (SOTA):          94.86%  (~350M params, hours on GPU)
  - This script:             94.25%  (642 KB classifier, 3s on CPU)
  - ModernBERT fine-tuned:   93.99%  (149M params, minutes on GPU)
  - BERT fine-tuned:         92.76%  (110M params, minutes on GPU)
  - Jev (zero-shot):         87.0%   (closed API)
  - Laya (zero-shot):        42.5%   (421M params)

MiniLM’s encoder is roughly 91 MB in FP32, BGE is about 1.2 GB, the classifier and scaler are only 642 KB

The linked gist evaluates all 3,080 official test examples. Running python banking77_gist.py uses MiniLM by default, and you can choose the larger BGE encoder. Everything runs locally (although it needs to download the embedding model on the first run)

This is just a proof of concept, but it shows you can get very good results without needing GPUs, large amounts of data or hours of training, if you mostly just need classification

The direction I'm now exploring, is a system that handles familiar decisions with classifiers first, but asks an LLM for help when needed, then uses the LLM responses to automatically improve its local classifiers

What are you using Jev/Laya for?

A quiet thread, for now.Start the conversation on HN ↗