OpenJev provides a live, local experiment for users to interact with language models directly on their own GPU. The demonstration allows for two methods of obtaining choice probabilities from an LLM: direct readout of logits or generating the probabilities as JSON text token by token. This setup enables users to observe and compare the performance of these two approaches.
The demonstration defaults to MiniCPM5 2B, with an option to switch to Qwen3 0.6B for devices with lower specifications, such as phones. There is no waitlist to access OpenJev, and the weights for the models are sourced from Hugging Face, remaining in the user's browser cache. Inputs to the models do not leave the user's page.
OpenJev measures real-time performance metrics, including setup, warmup, prompt preparation, direct execution, and generation completion times using `performance.now()`. The methods run sequentially on the same loaded model to avoid GPU contention. The demo utilizes pinned GGUF builds through wllama, noting that quantization can affect both quality and speed.
Both the direct readout and generation paths receive the same decision input. The direct readout normalizes choice logits only across the supplied options, while the generation path asks the model to write its option probabilities as JSON. It is noted that direct scores are a softmax over displayed option tokens and are not calibrated confidence, nor do they include every answer the model might prefer.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
OpenJev is a demonstration that allows users to run local language models (LLMs) on their GPU to compare direct readout of choice probabilities with token-by-token generation of the same distribution. It offers models like MiniCPM5 2B and Qwen3 0.6B for experimentation without a waitlist, focusing on real-time performance measurement.