Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Android 17 is the first since 3.x to add new APIs without releasing to the AOSP(grapheneos.social ↗)
    52comments
  2. Cloudflare Quick Tunnels(cloudflare.com ↗)
    187comments
  3. Apple releases iPhone Duo simulator and Xcode 27.1 beta(developer.apple.com ↗)
    13comments
  4. Saving another 100TB of RAM with math (and Rust)(cloudflare.com ↗)
    7comments
  5. Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug(ledger.com ↗)
    33comments
  6. Cache-to-Cache: Direct Semantic Communication Between Large Language Models(arxiv.org ↗)
    2comments
  7. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    56comments
  8. The Implications of Linguistic Illegibility for LLM Security(arxiv.org ↗)
    6comments
  9. OpenJev(openjev.com ↗)
    231comments
  10. C++26: Trivial infinite loops are no longer undefined behaviour(sandordargo.com ↗)
    137comments
  11. North Korean nuclear test sets off years of earthquakes(science.org ↗)
    122comments
  12. Our brain evolved from two primitive nervous systems that merged: Study(newscientist.com ↗)
    28comments
  13. I vibed a proof of Conway's conjecture(overreacted.io ↗)
    155comments
  14. The first new cat species discovered in 100 years(nationalgeographic.com ↗)
    13comments
  15. US Military had close call after using AI for hallucinated intelligence report(cnn.com ↗)
    189comments
  16. Border agents can search cellphones without a warrant or reasonable suspicion(lawandcrime.com ↗)
    51comments
  17. A heap overflow and SSO misconfiguration to compromise OpenAI internal repos(hacktron.ai ↗)
    192comments
  18. Show HN: Ax-check.com – Can agents use your product?(ax-check.com ↗)
    20comments
  19. Inside ZCode: Silently uploading your Git history to the cloud(ferstar.org ↗)
    83comments
  20. Minimal Phone 2(minimalcompany.com ↗)
    91comments
  21. How SpaceX streamlined the Raptor engine(construction-physics.com ↗)
    9comments
  22. A search-and-inference database from scratch in pure Zig(antfly.io ↗)
    5comments
  23. Cekura (YC F24) Is Hiring(ycombinator.com ↗)
    discuss
  24. Warez: The Infrastructure and Aesthetics of Piracy (2021)(archive.org ↗)
    5comments
  25. Show HN: Scry, programmable internet search w/ congestion pricing(scry.io ↗)
    12comments
  26. How to Write with an LLM(sockpuppet.org ↗)
    210comments
  27. Mathematicians Build Long-Awaited Graph Sandwich(quantamagazine.org ↗)
    13comments
  28. Jemalloc 5.4.0(github.com/jemalloc ↗)
    81comments
  29. I don't like passkeys(hawksley.dev ↗)
    654comments
  30. The scourge of x86 emulation(fex-emu.com ↗)
    73comments

Open-sourced jev architecture last year with model,paper and dataset

43 pointsby 1d ago
10 comments
Everyone now talks about the architecture that's not auto regressive and does lightning fast probability prediction with a json schema. I worked on this literally one year back in March 2025, published an arxiv paper, pushed the model to huggingface along with the pypi package and training dataset. And then one year later, a frontier lab came, proposing the same idea like literal breakthrough without technical papers, open weights and no open dataset. For anyones information the main guiding model is RL not embedding model or LLM

Paper: https://arxiv.org/abs/2503.23303

Model: https://huggingface.co/DeepMostInnovations/sales-conversion-model-reinf-learning

Dataset: https://huggingface.co/datasets/DeepMostInnovations/saas-sales-conversations

Also the second work published in September 2025 was exactly the same one jev proposed now

Paper: https://arxiv.org/abs/2510.01237

My model uses PPO over sequence embeddings to output turn-by-turn conversion trajectories (probabilities from 0.0 to 1.0).

Jev uses parallel sampling (trained via RLCD) to output confidence distributions and schema choices.

It's incredibly frustrating that the thing that you made with months of hard work, sweat and sleepless night is architecturally similar with the vertical use case and don't get the support you deserve because frontier lab build something horizontal. The open-source story in general

1d agoHN ↗

Feeling that open-source community do not get the recognition they deserve

1d agoHN ↗

The world's heavily about marketing, resources, connections, and signaling, unfortunately. You probably needed to market it in a bigger forum with shinier claims to attract attention (I don't think a paper on Arxiv is enough).

1d agoHN ↗

Put it on your CV

"I can come up with revolutionary ideas one year earlier than entire billion dollar organizations"

"I inventet Jev a year earlier"

1d agoHN ↗

Pity because without the frustration it would’ve been a good post. Catch is you’ve got intuition, but looking around instead of forward. Do it again, open-source it, either you’d quietly bring down few companies, or, when you’re close, you’d get offers from them. The who’s done what is a dying paradigm.

1d agoHN ↗

We are human , frustration is something we feel when same kinda architecture is closed sourced and we celebrate it

20h agoHN ↗

We are human , frustration is something we feel

Absolutely. Besides, when we see injustice we shouldn't be silent about it because that would encourage more of it.

when same kinda architecture is closed sourced and we celebrate it

I saw the post about Jev and the lack of basic information felt wrong and bizarre, I now see the most likely reason for it.

The best thing to do now, is to develop your open source project further and beat the Jev-ers, that story is very motivational and I'm interested.

1d agoHN ↗

Can you (or someone) provide some context for this post? What's Jev? What's the innovation here that was duplicated by the frontier lab?

3h agoHN ↗

From what I can tell these are classifiers trained for a single task. What excites people about Jev is that it can do zero-shot structured responses for arbitrary prompts. Now, this isn't new either; models like GLiNER have been around for a while. But Jev appears significantly more flexible and polished while still being cheap and fast.