414 points by tosh about 21 hours ago | 190 comments | View on ycombinator
nico about 12 hours ago |
prodigycorp about 13 hours ago |
The one thing jev has going for it is a dedicated company focused entirely on making the product good and keeping it maintained. I haven't been willing to jump on board with all these jev-shaped projects because their releases feel driven mostly by opportunism. I'm fine waiting a bit for the opportunists to shake out so we can see who is genuinely committed to bringing something valuable to the open-weight community.
Jev is much better than the traditional ML crowd gives it credit for, but my enthusiasm hits a wall when it comes to their data policy. It is completely draconian. Whatever you feed into the system, they retain.
The jev team needs to release a ZDR product, or their platform is dead on arrival. An open, jev-shaped model will win out solely on that basis.
oscarfr about 15 hours ago |
There are already many Jev-like models in there.
Edit: No affiliation. Just found it and thought others might find it interesting.
hbarka about 19 hours ago |
monkeydust about 20 hours ago |
nullbio about 20 hours ago |
aetherspawn about 15 hours ago |
mugul about 20 hours ago |
I understand the hype but I wonder: what are the use cases for this kind of model? Could it be used in the context of coding agents, or is it more relevant in totally different situations?
merqurio about 15 hours ago |
That showed us the best results at least
IronWolve about 5 hours ago |
So far in my tests, about 60% less tool calls. I'm also going to implement model switching, so it can use cheaper models. I think my workbench harness needs its prompts cleaned up.
jwr about 20 hours ago |
faangguyindia about 20 hours ago |
prompt_eval=244 ms wall=245 ms schema_cache=hit generated=0
Move limit reached after 200 moves: score=16, length=19.
So, if a 12B dense model can offer this latency on a local old PC, then definitely you can scale it up with more powerful machines and get even lower latency.
akkad33 about 20 hours ago |
My understanding is: it takes text input and it does one shot classification (no training data)
prometheus1992 about 13 hours ago |
soundworlds about 6 hours ago |
raahelb about 20 hours ago |
andy12_ about 18 hours ago |
I have tried many of these open-source Jev-like models on some linguistic tasks and they are so bad compared to Jev.
dunlin about 20 hours ago |
algoth1 about 12 hours ago |
k__ about 14 hours ago |
Is Jev a decoder (e.g., BERT) or is it some kind of encoder (e.g., GPT) that just happens to be trimmed down to only outputting a handful of tokens for the answers and their probability?
webprofusion about 20 hours ago |
monxer about 19 hours ago |
raahelb about 19 hours ago |
loclol101 about 11 hours ago |
raybb about 13 hours ago |
epsilonic about 14 hours ago |
verdverm about 2 hours ago |
khazhoux about 10 hours ago |
sinan-faizal about 17 hours ago |
Eastmill about 19 hours ago |
BeetleB about 12 hours ago |
As there have been a lot of Jev related submissions, can someone point me to a simple guide on how I can use it? For example, say I have a script/workflow where I use OpenRouter for LLM calls, and at some point I want to do a simple classification. Can I still use OpenRouter with some Jev model...?
rkeswick about 19 hours ago |
scotty79 about 15 hours ago |
stackzero about 17 hours ago |
ingen0s about 19 hours ago |
hn1rig3rak about 19 hours ago |
For emails, I get 95% accuracy with this method, with only 50-100 examples for training
Training the model takes less than 5 minutes on a CPU
The resulting model is <1MB, and inference is sub 100ms
Some other cool things about this approach:
* the model doesn’t train on some “ideal” or general classification, instead it learns your preferences
* the model runs on pretty much any mobile device and can be retrained online on the device
* privacy, the whole training and inference is 100% local, no data goes anywhere (except whatever you feed codex/claude while building the model)
Note: to do a more general test, I made a classifier for the Banking77 dataset. The model is <10MB, trains in <30s on CPU and gets 94.5% accuracy, which puts it in the top 5?models by accuracy for that set (the best one is at 94.86%, but it’s 350MB in size and takes hours to train on a GPU).