EveryDev.ai
Subscribe
Home
Tools

3,975+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Jevlike
    Jevlike icon

    Jevlike

    AI Development Libraries

    An open-source Python library for training small models that select among a changing list of text options in a single forward pass, inspired by TypeSafe's Jev model.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. Use, modify, and distribute freely.

    Engagement

    Available On

    Windows
    macOS
    API
    SDK
    CLI

    Resources

    WebsiteGitHubllms.txt

    Topics

    AI Development LibrariesLLM OrchestrationModel Management

    Alternatives

    Transformer LabArkorLudwig
    Developer
    Minimal LabsMinimal Labs builds lightweight AI research tools and open-s…

    Listed Sep 2026

    About Jevlike

    Jevlike is an independent, MIT-licensed research starter for training small "option-selection" models that take a piece of text and a list of N text options and return one probability per option — all in a single forward pass rather than generating an answer token by token. It was created by Minimal Labs and published on GitHub, where it has accumulated 900 stars and 76 forks since its initial release. The project is explicitly inspired by TypeSafe's commercial Jev model but is an independent implementation; the README notes that TypeSafe has not published its design.

    What It Is

    Jevlike trains a lightweight scorer that maps a context string and a variable-length list of text options to a probability distribution over those options. The core mechanism — an option-attention head — assigns attention weights from each option's query vector to the context tokens, produces one attended context vector per option, and converts the resulting scores into probabilities via softmax. This one-pass design is architecturally distinct from autoregressive decoders: the README reports that at eight options, one pass was approximately 100 times faster than a small decoder forced to write 400 tokens in local experiments.

    Architecture and Encoder Paths

    The model supports two encoder strategies:

    • Default byte encoder: Learns byte-level embeddings from scratch. Cheap and fast, but the README acknowledges it is "weak on language meaning." Truncates context to 192 bytes and each option to 32 bytes by default, with configurable limits.
    • Frozen pretrained encoder (optional): Integrates any compatible Hugging Face encoder (e.g., Qwen/Qwen2.5-0.5B) via an optional [transformers] install. The checkpoint stores only the trained scorer head and the encoder name — not the frozen encoder weights — so loading requires access to the same Hugging Face model.

    The scorer head width is controlled by --rank, and training supports CPU, Apple MPS (Mac GPU), and CUDA (NVIDIA GPU).

    Included Examples and Checkpoints

    The repository ships with two game-based demonstrations that use the same visual scorer from jevlike.vision:

    • Doom example: Scores seven controller buttons from image patches. The released joint checkpoint averaged 0.60 kills and -97.50 reward across ten recorded episodes (per the README).
    • Chess example: Scores five keys for a chess controller. The chess-only checkpoint scored 4 wins, 46 draws, and 0 losses in 50 sampled games against a random mover, but 0 wins, 2 draws, and 48 losses against Stockfish level 0 (per the README). The README explicitly notes these windows were selected for activity and are not typical-play or competence claims.

    A Wikispeedia next-click example is also included, with a download script for the public SNAP archives.

    Performance Benchmarks from Local Experiments

    The README documents results from the experiments that led to this starter:

    • ~98% top-1 accuracy on synthetic menus with the byte encoder.
    • 26% accuracy on target-disjoint Wikispeedia next-click data using a frozen Qwen2.5-0.5B encoder, versus ~8% for shuffled and random-encoder controls.
    • 29% accuracy with a small model trained from scratch on 40,000 clicks.

    The README explicitly states these numbers describe local experiments, not the quickstart run, and that the project does not claim equal quality with Jev or reproduce TypeSafe's private training method.

    Setup Path

    The quickstart uses uv for environment management. After cloning, users run uv venv, install with uv pip install -e '.[dev]', and then use four CLI commands: jevlike-data (generate synthetic data), jevlike-train, jevlike-eval, and jevlike-predict. Game extras and the Hugging Face encoder path are optional install extras.

    Jevlike - 1

    Community Discussions

    Be the first to start a conversation about Jevlike

    Share your experience with Jevlike, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT License. Use, modify, and distribute freely.

    • Full source code access
    • CLI tools for data generation, training, evaluation, and prediction
    • Byte encoder and optional Hugging Face encoder support
    • Game examples with released checkpoints (Doom, chess)
    • Wikispeedia example

    Capabilities

    Key Features

    • Single-pass option scoring (no token-by-token generation)
    • Variable-length option lists per inference call
    • Default byte-level encoder trained from scratch
    • Optional frozen Hugging Face pretrained encoder integration
    • CLI tools: jevlike-data, jevlike-train, jevlike-eval, jevlike-predict
    • JSONL data format with per-row variable option counts
    • Top-1 and top-3 accuracy evaluation with calibration error
    • Shuffled-context control for sanity checking
    • Visual scorer for image-patch option scoring (jevlike.vision)
    • Doom and chess game controller examples with released checkpoints
    • Wikispeedia next-click example with download script
    • CPU, Apple MPS, and CUDA training support
    • Configurable context and option token limits
    • MIT License

    Integrations

    Hugging Face Transformers (optional frozen encoder)
    Qwen2.5-0.5B (example encoder)
    ViZDoom (Doom game example)
    Chess engine (chess example)
    Playwright (film rendering)
    SNAP Wikispeedia dataset
    Stockfish (chess evaluation)
    API Available

    Ratings & Reviews

    No ratings yet

    Be the first to rate Jevlike and help others make informed decisions.

    Developer

    Minimal Labs

    Minimal Labs builds lightweight AI research tools and open-source model starters. The team released Jevlike, an independent implementation of single-pass option-scoring models inspired by TypeSafe's Jev, under the MIT License. Their work focuses on efficient, small-model architectures that prioritize speed and simplicity over large-scale commercial deployments.

    Read more about Minimal Labs
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Transformer Lab icon

    Transformer Lab

    An open-source machine learning research platform for training, fine-tuning, and evaluating LLMs and multimodal models locally, on-prem, or in the cloud.

    Arkor icon

    Arkor

    Agent-native TypeScript framework for fine-tuning open-weight LLMs, letting coding agents like Claude Code or Codex build, train, and deploy custom models on managed GPUs.

    Ludwig icon

    Ludwig

    Ludwig is a low-code, declarative deep learning framework for building custom AI models including LLMs and neural networks using YAML configuration files.

    Browse all tools

    Related Topics

    AI Development Libraries

    Programming libraries and frameworks that provide machine learning capabilities, model integration, and AI functionality for developers.

    314 tools

    LLM Orchestration

    Platforms and frameworks for designing, managing, and deploying complex LLM workflows with visual interfaces, allowing for the coordination of multiple AI models and services.

    234 tools

    Model Management

    Tools for managing, versioning, and deploying AI models.

    60 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions