Close Menu

    Subscribe to Updates

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

    What's Hot

    PSX extends losses as US tariffs return, geopolitics unsettle investors

    February 24, 2026

    Pakistani film ‘Mai Bakhtawar’ wins big at Indian film festival

    February 24, 2026

    Could A Stablecoin Fund Gaza Relief? Trump’s Board Of Peace Is Considering It

    February 24, 2026
    Facebook X (Twitter) Instagram
    Tuesday, February 24
    Trending
    • PSX extends losses as US tariffs return, geopolitics unsettle investors
    • Pakistani film ‘Mai Bakhtawar’ wins big at Indian film festival
    • Could A Stablecoin Fund Gaza Relief? Trump’s Board Of Peace Is Considering It
    • New Levels of Disturbing to Playtime Co
    • Driver & HTV Driver Jobs 2026 in Saudi Arabia 2026 Job Advertisement Pakistan
    • Faculty and different cancellations round southern Manitoba on Tuesday
    • Australian PM Albanese evacuated from residence after safety risk – World
    • Spurs overpower Pistons in conflict of NBA’s kind groups
    • Spotify rolls out AI-powered Prompted Playlists to the UK and different markets
    • Who is Hatu Sheikh?
    Facebook X (Twitter) Instagram Pinterest Vimeo
    The News92The News92
    • Home
    • World
    • National
    • Sports
    • Crypto
    • Travel
    • Lifestyle
    • Jobs
    • Insurance
    • Gaming
    • AI & Tech
    • Health & Fitness
    The News92The News92
    Home - AI & Tech - Google DeepMind Researchers Apply Semantic Evolution to Create Non Intuitive VAD-CFR and SHOR-PSRO Variants for Superior Algorithmic Convergence
    AI & Tech

    Google DeepMind Researchers Apply Semantic Evolution to Create Non Intuitive VAD-CFR and SHOR-PSRO Variants for Superior Algorithmic Convergence

    Naveed AhmadBy Naveed AhmadFebruary 24, 2026No Comments5 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Telegram Email
    Share
    Facebook Twitter LinkedIn Pinterest Email


    In the competitive arena of Multi-Agent Reinforcement Learning (MARL), progress has long been bottlenecked by human intuition. For years, researchers have manually refined algorithms like Counterfactual Regret Minimization (CFR) and Policy Space Response Oracles (PSRO), navigating a vast combinatorial space of update rules via trial-and-error.

    Google DeepMind research team has now shifted this paradigm with AlphaEvolve, an evolutionary coding agent powered by Large Language Models (LLMs) that automatically discovers new multi-agent learning algorithms. By treating source code as a genome, AlphaEvolve doesn’t just tune parameters—it invents entirely new symbolic logic.

    Semantic Evolution: Beyond Hyperparameter Tuning

    Unlike traditional AutoML, which often optimizes numeric constants, AlphaEvolve performs semantic evolution. It utilizes Gemini 2.5 pro as an intelligent genetic operator to rewrite logic, introduce novel control flows, and inject symbolic operations into the algorithm’s source code.

    The framework follows a rigorous evolutionary loop:

    • Initialization: The population begins with standard baseline implementations, such as standard CFR.
    • LLM-Driven Mutation: A parent algorithm is selected based on fitness, and the LLM is prompted to modify the code to reduce exploitability.
    • Automated Evaluation: Candidates are executed on proxy games (e.g., Kuhn Poker) to compute negative exploitability scores.
    • Selection: Valid, high-performing candidates are added back to the population, allowing the search to discover non-intuitive optimizations.

    VAD-CFR: Mastering Game Volatility

    The first major discovery is Volatility-Adaptive Discounted (VAD-) CFR. In Extensive-Form Games (EFGs) with imperfect information, agents must minimize regret across a sequence of histories. While traditional variants use static discounting, VAD-CFR introduces three mechanisms that often elude human designers:

    1. Volatility-Adaptive Discounting: Using an Exponential Weighted Moving Average (EWMA) of the instantaneous regret magnitude, the algorithm tracks the “shake” of the learning process. When volatility is high, it increases discounting to forget unstable history faster; when it drops, it retains more history for fine-tuning.
    2. Asymmetric Instantaneous Boosting: VAD-CFR boosts positive instantaneous regrets by a factor of 1.1. This allows the agent to immediately exploit beneficial deviations without the lag associated with standard accumulation.
    3. Hard Warm-Start & Regret-Magnitude Weighting: The algorithm enforces a ‘hard warm-start,’ postponing policy averaging until iteration 500. Interestingly, the LLM generated this threshold without knowing the 1000-iteration evaluation horizon. Once accumulation begins, policies are weighted by the magnitude of instantaneous regret to filter out noise.

    In empirical tests, VAD-CFR matched or surpassed state-of-the-art performance in 10 out of 11 games, including Leduc Poker and Liar’s Dice, with 4-player Kuhn Poker being the only exception.

    SHOR-PSRO: The Hybrid Meta-Solver

    The second breakthrough is Smoothed Hybrid Optimistic Regret (SHOR-) PSRO. PSRO operates on a higher abstraction called the Meta-Game, where a population of policies is iteratively expanded. SHOR-PSRO evolves the Meta-Strategy Solver (MSS), the component that determines how opponents are pitted against each other.

    The core of SHOR-PSRO is a Hybrid Blending Mechanism that constructs a meta-strategy σ by linearly blending two distinct components:

    σ hybrid = (1 -𝛌) . σ ORM + 𝛌 . σSoftmax

    • σ ORM : Provides the stability of Optimistic Regret Matching.
    • σSoftmax: A Boltzmann distribution over pure strategies that aggressively biases the solver toward high-reward modes.

    SHOR-PSRO employs a dynamic Annealing Schedule. The blending factor 𝛌 anneals from 0.3 to 0.05, gradually shifting the focus from greedy exploration to robust equilibrium finding. Furthermore, it discovered a Training vs. Evaluation Asymmetry: the training solver uses the annealing schedule for stability, while the evaluation solver uses a fixed, low blending factor (𝛌=0.01) for reactive exploitability estimates.

    Key Takeaways

    • AlphaEvolve Framework: DeepMind Researchers introduced AlphaEvolve, an evolutionary system that uses Large Language Models (LLMs) to perform ‘semantic evolution’ by treating an algorithm’s source code as its genome. This allows the system to discover entirely new symbolic logic and control flows rather than just tuning hyperparameters.
    • Discovery of VAD-CFR: The system evolved a new regret minimization algorithm called Volatility-Adaptive Discounted (VAD-) CFR. It outperforms state-of-the-art baselines like Discounted Predictive CFR+ by using non-intuitive mechanisms to manage regret accumulation and policy derivation.
    • VAD-CFR’s Adaptive Mechanisms: VAD-CFR utilizes a volatility-sensitive discounting schedule that tracks learning instability via an Exponential Weighted Moving Average (EWMA). It also features an ‘Asymmetric Instantaneous Boosting’ factor of 1.1 for positive regrets and a hard warm-start that delays policy averaging until iteration 500 to filter out early-stage noise.
    • Discovery of SHOR-PSRO: For population-based training, AlphaEvolve discovered Smoothed Hybrid Optimistic Regret (SHOR-) PSRO. This variant utilizes a hybrid meta-solver that blends Optimistic Regret Matching with a smoothed, temperature-controlled distribution over best pure strategies to improve convergence speed and stability.
    • Dynamic Annealing and Asymmetry: SHOR-PSRO automates the transition from exploration to exploitation by annealing its blending factor and diversity bonuses during training. The search also discovered a performance-boosting asymmetry where the training-time solver uses time-averaging for stability while the evaluation-time solver uses a reactive last-iterate strategy.

    Check out the Paper. Also, feel free to follow us on Twitter and don’t forget to join our 100k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.




    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticlePeople’s reaction against the erroneous statement of ex-CM GB
    Next Article Climate replace forward of essential Pakistan v England T20 World Cup conflict
    Naveed Ahmad
    • Website
    • Tumblr

    Related Posts

    AI & Tech

    Spotify rolls out AI-powered Prompted Playlists to the UK and different markets

    February 24, 2026
    AI & Tech

    Guide Labs debuts a new kind of interpretable LLM

    February 24, 2026
    AI & Tech

    Canva acquires startups working on animation and marketing

    February 24, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Demo
    Top Posts

    Oatly loses ‘milk’ branding battle in UK Supreme Courtroom

    February 12, 20261 Views

    PSX extends losses as US tariffs return, geopolitics unsettle investors

    February 24, 20260 Views

    Pakistani film ‘Mai Bakhtawar’ wins big at Indian film festival

    February 24, 20260 Views
    Stay In Touch
    • Facebook
    • YouTube
    • TikTok
    • WhatsApp
    • Twitter
    • Instagram
    Latest Reviews

    Subscribe to Updates

    Get the latest tech news from FooBar about tech, design and biz.

    Demo
    Most Popular

    Oatly loses ‘milk’ branding battle in UK Supreme Courtroom

    February 12, 20261 Views

    PSX extends losses as US tariffs return, geopolitics unsettle investors

    February 24, 20260 Views

    Pakistani film ‘Mai Bakhtawar’ wins big at Indian film festival

    February 24, 20260 Views
    Our Picks

    PSX extends losses as US tariffs return, geopolitics unsettle investors

    February 24, 2026

    Pakistani film ‘Mai Bakhtawar’ wins big at Indian film festival

    February 24, 2026

    Could A Stablecoin Fund Gaza Relief? Trump’s Board Of Peace Is Considering It

    February 24, 2026

    Subscribe to Updates

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

    Facebook X (Twitter) Instagram Pinterest
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions
    • Advertise
    • Disclaimer
    © 2026 TheNews92.com. All Rights Reserved. Unauthorized reproduction or redistribution of content is strictly prohibited.

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