Remix.run Logo
druskacik 6 hours ago

I'm really interested in technical details behind Jev (not this), how it can work so fast and so cheap. It's probably large (must be since the performance is so good) but somehow still fast, so it must include some really non-trivial stuff. The price suggests it may be runnable locally, but who knows.

If it was possible to re-create it as an open-weight, it would be exciting!

snek_case 5 hours ago | parent | next [-]

It might be conceptually similar to a single-output-token LLM (sort of). LLMs output next-token probabilities. You can ask LLMs to output yes/no, or to output only a color, or only a digit or something like that.

In this case I would imagine that they probably embed your input data into a vector space, and they embed your questions/outputs into another space, and manage to predict probabilities/classes/scores for your outputs very quickly. Embedding the output classes/questions into a vector spaces gives you something you can reuse across runs cheaply, as opposed to an LLM where you can prefill the KV cache but this is an expensive operation in terms of memory.

cmrdporcupine 4 hours ago | parent | prev [-]

Basically it's: skip decode, just do prefill then do some measurements. That's the crude description anyways.

And prefill is way faster on GPU type hardware.