sol
OpenAI says GPT-6 Astra is 'the most intelligent and aligned model in the world'
A little under two months after releasing its last major model family to the public, GPT-5.6 Sol, Terra and Luna, OpenAI is back with an entirely new one: GPT-6 Astra, what it claims is "the most intelligent and aligned model in the world." Following the company's decision to slow frontier model development in August after one of its models hacked AI platform Hugging Face, it may also be the last major AI model it releases for a while. A flashy demo video the company released alongside the launch shows Astra handling everything from 3D modeling to building slideshows, and often taking care of multiple tasks across different domains at the same time (like ordering food while coding a game). Key to Astra's appeal is its ability to handle these multi-step workflows on your computer and in and out of your browser. It's also allegedly able to do those complex tasks with "strong visual judgment," OpenAI says, and without drifting from its original directions or prompt.
The best moments from the Love Island USA Season 8 reunion
Trending Now Say More Look Up Mashable's Best: E-readers, robovacs, laptops, earbuds, smart home and more Switch Off Creator Playbook Mashable Voices Mashable Selects Safety Net Versus Gift Ideas For Everyone On Your List In My Bag All Series Rizwana Zafer is a freelance journalist at Mashable, where she covers digital culture and entertainment. She holds a master's degree in journalism from the Craig Newmark Graduate School of Journalism and a Bachelor of Arts degree in English and Psychology from Binghamton University. When she's not binge-watching TV, you can find her hanging out with her four cats or trying to catch a Letterboxd showing somewhere in New York City. The Season 8 Islanders were joined by hosts Ariana Madix and Andy Cohen, who got into the nitty gritty post-villa details, recapped some of the season's messiest moments (like Casa Amor and Movie Night), inspired healing conversations between old friends (like Kenzie and Melanie), and revealed which of the couples are still together. Let's get into the best moments from the Season 8 reunion.
ALearnability Analysis on Neuro-Symbolic Learning
This paper presents a comprehensive theoretical analysis of the learnability of neuro-symbolic (NeSy) tasks within hybrid systems. We characterize the learnability of NeSy tasks by their derived constraint satisfaction problems (DCSPs), demonstrating that a task is learnable if and only if its corresponding DCSP admits a unique solution. Under mild assumptions, we establish the sample complexity for learnable tasks and show that, for general tasks, the asymptotic expected concept error is controlled by the degree of disagreement among DCSP solutions. Our findings unify the characterization of learnability and the phenomenon of reasoning shortcuts, providing theoretical guarantees and actionable guidance for the principled design of NeSy systems.
Don't Eliminate Cut: Exponential Separations in LLM-Based Theorem Proving
Sonoda, Sho, Akiyama, Shunta, Uezato, Yuya
We develop a theoretical analysis of LLM-guided formal theorem proving in interactive proof assistants (e.g., Lean) by modeling tactic proposal as a stochastic policy in a finite-horizon deterministic MDP. To capture modern representation learning, we treat the state and action spaces as general compact metric spaces and assume Lipschitz policies. To explain the gap between worst-case hardness and empirical success, we introduce problem distributions generated by a reference policy $q$, including a latent-variable model in which proofs exhibit reusable cut/lemma/sketch structure represented by a proof DAG. Under a top-$k$ search protocol and Tsybakov-type margin conditions, we derive lower bounds on finite-horizon success probability that decompose into search and learning terms, with learning controlled by sequential Rademacher/covering complexity. Our main separation result shows that when cut elimination expands a DAG of depth $D$ into a cut-free tree of size $Ω(Λ^D)$ while the cut-aware hierarchical process has size $O(λ^D)$ with $λ\llΛ$, a flat (cut-free) learner provably requires exponentially more data than a cut-aware hierarchical learner. This provides a principled justification for subgoal decomposition in recent agentic theorem provers.
Unified Inference Framework for Single and Multi-Player Performative Prediction: Method and Asymptotic Optimality
Zhang, Zhixian, Hou, Xiaotian, Zhang, Linjun
Performative prediction characterizes environments where predictive models alter the very data distributions they aim to forecast, triggering complex feedback loops. While prior research treats single-agent and multi-agent performativity as distinct phenomena, this paper introduces a unified statistical inference framework that bridges these contexts, treating the former as a special case of the latter. Our contribution is two-fold. First, we put forward the Repeated Risk Minimization (RRM) procedure for estimating the performative stability, and establish a rigorous inferential theory for admitting its asymptotic normality and confirming its asymptotic efficiency. Second, for the performative optimality, we introduce a novel two-step plug-in estimator that integrates the idea of Recalibrated Prediction Powered Inference (RePPI) with Importance Sampling, and further provide formal derivations for the Central Limit Theorems of both the underlying distributional parameters and the plug-in results. The theoretical analysis demonstrates that our estimator achieves the semiparametric efficiency bound and maintains robustness under mild distributional misspecification. This work provides a principled toolkit for reliable estimation and decision-making in dynamic, performative environments.
SOL: Sampling-based Optimal Linear bounding of arbitrary scalar functions
An activation function is an arbitrary, nonlinear,scalar function $f: \mathbb{R}^d \rightarrow \mathbb{R}$. In the existing work on robustness certification, such bounds have been computed using human ingenuity for a handful of the most popular activation functions. While a number of heuristics have been proposed for bounding arbitrary functions,no analysis of the tightness optimality for general scalar functions has been offered yet, to the best of our knowledge. We fill this gap by formulating a concise optimality criterion for tightness of the approximation which allows us tobuild optimal bounds for any function convex in the region of interest $R$. Fora more general class of functions Lipshitz-continuous in $R$ we propose a sampling-based approach (SOL) which, given an instance of the bounding problem, efficiently computes the tightest linear bounds within a given $\varepsilon > 0$ threshold. We leverage an adaptive sampling technique to iteratively build a setof sample points suitable for representing the target activation function.
Execution Guided Line-by-Line Code Generation
Lavon, Boaz, Katz, Shahar, Wolf, Lior
We present a novel approach to neural code generation that incorporates real-time execution signals into the language model generation process. While large language models (LLMs) have demonstrated impressive code generation capabilities, they typically do not utilize execution feedback during inference, a critical signal that human programmers regularly leverage. Our method, Execution-Guided Classifier-Free Guidance (EG-CFG), dynamically incorporates execution signals as the model generates code, providing line-by-line feedback that guides the generation process toward executable solutions. EG-CFG employs a multi-stage process: first, we conduct beam search to sample candidate program completions for each line; second, we extract execution signals by executing these candidates against test cases; and finally, we incorporate these signals into the prompt during generation. By maintaining consistent signals across tokens within the same line and refreshing signals at line boundaries, our approach provides coherent guidance while preserving syntactic structure. Moreover, the method naturally supports native parallelism at the task level in which multiple agents operate in parallel, exploring diverse reasoning paths and collectively generating a broad set of candidate solutions. Our experiments across diverse coding tasks demonstrate that EG-CFG significantly improves code generation performance compared to standard approaches, achieving state-of-the-art results across various levels of complexity, from foundational problems to challenging competitive programming and data science tasks. Our code is available at: https://github.com/boazlavon/eg_cfg