Close Menu
NCIJ Network NCIJ Network
    What's Hot

    At least 11 people killed in South Africa township shooting | Gun Violence News

    September 23, 2026

    Qualcomm’s Snapdragon 8 Elite Gen 6 comes in an Extreme version too

    September 23, 2026

    Nokia Open-Sources AnyJev: A Training-Free Layer That Turns Any Open LLM Into a Calibrated Decision Model

    September 23, 2026
    Facebook X (Twitter) Instagram
    Trending
    • At least 11 people killed in South Africa township shooting | Gun Violence News
    • Qualcomm’s Snapdragon 8 Elite Gen 6 comes in an Extreme version too
    • Nokia Open-Sources AnyJev: A Training-Free Layer That Turns Any Open LLM Into a Calibrated Decision Model
    • Ryuk ransomware member sentenced to 24 months in prison
    • Bitcoin Breaks Out as Nasdaq Hits Records and Oil Slides on Iran Hopes
    • One of America’s largest reservoirs just hit a record low
    • UK economy will grow by less than expected next year, OECD says
    • Shell done with US Gulf oil asset sale set to realize $1.7 billion total deal value
    • About
      • Our Team
      • Editorial Policy
      • Editorial Independence
      • International Support
    • Trust & Standards
      • AI Usage Policy
      • Conflict of Interest Policy
      • Corrections Policy
      • Ethics Policy
      • Fact-Checking Policy
      • Source Protection
    • Get Involved
      • Guide for Sources
      • Support Independent Journalism
    • Legal
      • Cookie Policy
      • Privacy Policy
      • Terms of Use
    Facebook X (Twitter) Instagram
    NCIJ Network NCIJ Network
    Wednesday, September 23
    • Home
    • World
    • Ai
    • Business
    • Politics
    • Health
    • Crypto
    • Science
    • Technology
    • Cybersecurity
    • Defense & Security
    • Economy
    • Energy
    • Europe
    • More
      • Fact Check
      • Investigations
      • Opinion & Analysis
      • Environment
    NCIJ Network NCIJ Network
    Home»Artificial Intelligence

    Nokia Open-Sources AnyJev: A Training-Free Layer That Turns Any Open LLM Into a Calibrated Decision Model

    NCIJ NETWNCIJ NETWORKBy NCIJ NETWNCIJ NETWORKSeptember 23, 2026 Artificial Intelligence No Comments4 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Nokia’s applied research team has open-sourced AnyJev, a Python library that turns an open LLM into a decision model. It needs no training. It targets a common production job: picking one answer from a fixed set instead of writing a sentence.

    Is it deployable? Yes, it installs from PyPI, ships under Apache-2.0, and has transformers and vLLM backends with shared-prefix scoring.

    What is AnyJev?

    AnyJev borrows its interface from Jev. Jev is the System One decision model that TypeSafe AI launched in September 2026 (our coverage). You give AnyJev a typed question and get back a decision with a probability you can threshold. That probability is read from the model’s next-token distribution. Nothing is generated, parsed, or trained.

    The library supports 3 question types:

    • A choice question picks one of K options.
    • A noul question is yes or no.
    • A score question places the answer in one of several ordered bins.

    The Problem With Reading Logits Directly

    Many open projects already restrict the next token to the option labels and read the scores. The Nokia research team flags 2 flaws in that shortcut. First, the answer can change when the options are reordered. Second, the probabilities are not calibrated.

    The levels doc names 2 causes:

    • The first is prior bias: the model favors some labels, such as “Yes” over “No”, whatever the input.
    • The second is position bias: the model favors certain slots in the option list.

    How AnyJev Works: L0 and L1

    Every decision carries a level field.

    L0 (zero labels, on by default) applies 2 fixes:

    • Cyclic shifts. For a question with K options, the list is shown in K rotations, so every option appears in every position once. The results are combined in log space as a geometric mean. If the position bias is additive in logit space, this removes it exactly.
    • Prior correction. By default, AnyJev uses batch calibration. It keeps a running mean of the predicted distributions on real inputs and divides it out at strength 0.75. The correction starts after 8 items.

    L0 costs K prefills per decision, batched over a shared prefix. That is about 0.25 s per decision at batch 32 on one H100, with K = 20.

    L1 (100 to 500 labels per question) adds temperature scaling on top of L0. The fitted values are saved as a small JSON artifact. L1 reshapes confidence but does not change the ranking of answers.

    Benchmark Results

    On Qwen3-8B with BANKING77 (20-way, 300 test items), the numbers look like this:

    Metric Raw logits AnyJev L0 AnyJev L1
    Labels required 0 0 100 to 500
    Flip rate when options reversed 0.230 0.073 0.077
    Accuracy 0.747 0.803 0.807
    Calibration error (ECE) 0.240 0.184 0.095
    Auto-decidable at 5% error 7.7% 46.3% 52.0%

    A few other results from the repo:

    • L0 reduced order flips on all 9 model and task rows tested.
    • On a typed-decisions set, Qwen3-32B with L1 reached an ECE of 0.036, compared with 0.144 published for Jev. On accuracy, the fine-tuned Laya still leads.
    • The full ablation table covers Qwen, OLMo, Granite, Phi and Mistral models.
    • Wu says the team tried AnyJev on an internal Nokia routing problem and saw promising results.

    How to Use AnyJev

    # pip install "anyjev[hf]"
    from anyjev import Decider, Question
    from anyjev.backends.hf import HFBackend
    
    d = Decider(HFBackend("Qwen/Qwen3-8B"))
    route = Question.choice("Which team should handle this?",
                            ["billing", "technical", "sales", "other"], name="route")
    r = d.decide({"conversation": [...]}, [route])
    r["route"].distribution   # probabilities per option

    For serving, you start vLLM with prefix caching and point a VLLMBackend at it.

    AnyJev Calibrated Decision Layer LLM model Nokia open OpenSources TrainingFree turns
    NCIJ NETWNCIJ NETWORK
    • Website

    Keep Reading

    AI Agents Are Becoming a New Malware Distribution Channel

    OpenAI Releases GPT-6 Sol and Luna: 50% Cheaper API Pricing and Benchmarks

    Open wounds and eyes that can’t close – women warn about cheap bleph eyelid surgery

    SpeakON Ships a MagSafe AI Voice Button With Its Own Microphone: Turning Your Voice into Polished Communication, and Action across Apps

    Jamaica hails King’s decision to refer slavery reparations petition to privy council as ‘really big deal’ | Jamaica

    Anthropic Releases Claude Opus 5.5: Fable 5.1-Level Performance at 40% Lower Running Cost Than Opus 5

    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    At least 11 people killed in South Africa township shooting | Gun Violence News

    September 23, 2026

    Qualcomm’s Snapdragon 8 Elite Gen 6 comes in an Extreme version too

    September 23, 2026

    Nokia Open-Sources AnyJev: A Training-Free Layer That Turns Any Open LLM Into a Calibrated Decision Model

    September 23, 2026

    Ryuk ransomware member sentenced to 24 months in prison

    September 23, 2026
    Latest Posts

    COLDCARD security audit phishing attack installs remote access tool

    August 5, 2026

    Reddit aims to make ‘karma’ less important for first-time posters with shift to AI moderation tools

    August 5, 2026

    Right turn on green: is the Telegraph changing its tune on the climate? | Daily Telegraph

    August 5, 2026

    Subscribe to News

    Get the latest sports news from NewsSite about world, sports and politics.

    NCIJ Network is an independent digital news platform delivering trusted investigative journalism, European and global news, in-depth analysis, and fact-based reporting with accuracy, transparency, and integrity.

    Facebook X (Twitter) Instagram Pinterest YouTube

    At least 11 people killed in South Africa township shooting | Gun Violence News

    September 23, 2026

    Qualcomm’s Snapdragon 8 Elite Gen 6 comes in an Extreme version too

    September 23, 2026

    Nokia Open-Sources AnyJev: A Training-Free Layer That Turns Any Open LLM Into a Calibrated Decision Model

    September 23, 2026

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Type above and press Enter to search. Press Esc to cancel.