AI & ML Papers
33.2K subscribers
7.16K photos
550 videos
24 files
7.84K links
Advancing research in Machine Learning – practical insights, tools, and techniques for researchers.

Admin: @HusseinSheikho || @Hussein_Sheikho
Download Telegram
AI & ML Papers
Photo
πŸ”₯ NatureBench: Can Coding Agents Match the Published SOTA of Nature-Family Papers?

πŸ’‘ The paper introduces NatureBench, a benchmark of 90 scientific tasks derived from Nature publications, to assess the ability of AI coding agents to achieve discovery rather than just reproduction. The benchmark is built on NatureGym, an automated pipeline that constructs a standardized environment for each task, addressing the environment fragmentation problem that has limited the credibility of prior benchmarks. The authors evaluate ten frontier agent configurations under a strict protocol and find that the strongest model surpasses the state of the art on only 17.8 percent of tasks. The analysis reveals that agents succeed primarily through methodological translation, converting scientific tasks into familiar supervised prediction problems, rather than through genuine scientific innovation. The main reasons for failure are wrong method choice and insufficient compute budget, rather than task misunderstanding. The benchmark, pipeline, and a public leaderboard are released to facilitate further research. The paper contributes to the understanding of the limitations of current AI coding agents in achieving discovery and highlights the need for genuine scientific innovation in AI research.


πŸ“… Published on Jun 23

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.24530
β€’ PDF: https://arxiv.org/pdf/2606.24530
β€’ Project Page: https://frontisai.github.io/NatureBench/

πŸ“Š Datasets citing this paper:
β€’ https://huggingface.co/datasets/FrontisAI/NatureBench

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#ArtificialIntelligenceInScience #NatureBench #AICodingAgents #ScientificDiscoveryWithAI #BenchmarkingAIAgents
❀1
AI & ML Papers
Photo
πŸ”₯ DiffusionBench: On Holistic Evaluation of Diffusion Transformers

πŸ’‘ The paper introduces a unified framework called NanoGen for training and evaluating diffusion transformers, which are used in image generation tasks. The current evaluation setup for diffusion transformers is limited to class-conditional generation on ImageNet, which may not reflect real progress in generative modeling. The authors argue that text-to-image generation is a more comprehensive task, but it is often skipped due to perceived high costs and inconvenience. However, the authors show that with NanoGen, training and evaluating text-to-image models requires comparable compute to ImageNet.

The NanoGen framework supports various diffusion methods and can be easily configured to train models on both ImageNet and text-to-image tasks. The authors trained 21 latent diffusion models using NanoGen and found that the ranking of methods on ImageNet and text-to-image tasks shows no strong correlation. This suggests that a method that improves performance on ImageNet may not necessarily improve performance on text-to-image generation.

To address this issue, the authors propose a holistic benchmark called DiffusionBench, which summarizes results on both ImageNet and text-to-image tasks. The authors recommend reporting DiffusionBench in place of ImageNet alone, as methods that improve DiffusionBench are more likely to reflect broader progress in generative modeling. The main contribution of the paper is the introduction of NanoGen and DiffusionBench, which provide a more comprehensive evaluation setup for diffusion transformers and can help to advance research in generative modeling.


πŸ“… Published on Jun 23

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.24888
β€’ PDF: https://arxiv.org/pdf/2606.24888
β€’ Project Page: https://end2end-diffusion.github.io/diffusion-bench/

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#DiffusionTransformers #ImageGenerationTasks #TextToImageGeneration #GenerativeModeling #DiffusionBasedArchitectures
πŸ”₯ AOHP: An Open-Source OS-Level Agent Harness for Personalized, Efficient and Secure Interaction

πŸ’‘ The paper introduces AOHP, an open source operating system framework built on the Android Open Source Project, designed to support AI agents as first class entities. The motivation behind AOHP is to address the limitations of existing operating systems, which are application centric and do not provide native support for AI agents, resulting in execution overhead and safety risks. AOHP treats agents as first class OS actors, enabling adaptive user interfaces and agent friendly runtime environments. The framework introduces three agent oriented system mechanisms: personalized service composition, efficient agent interfaces, and secure information flow. The authors evaluated AOHP through preliminary experiments on challenging tasks and found that it shows significant advantages in task completion rate, execution cost, and security policy compliance. Specifically, AOHP achieved a 21.12 percent increase in task completion rate and a 51.55 percent reduction in token cost. The paper contributes to the research community by providing an open testbed to explore the architectural primitives desired for agent mediated interaction, and demonstrates the potential of AOHP to enhance the efficiency, security, and adoption of AI agents in operating systems.


πŸ“… Published on Jun 22

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ Project Page: https://huggingface.co/papers?q=Android%20Open%20Source%20Project
β€’ arXiv: https://arxiv.org/abs/2606.23449
β€’ PDF: https://arxiv.org/pdf/2606.23449

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#OperatingSystemSecurity #AIIntegrationInOS #AgentOrientedProgramming #OpenSourceAndroid #ArtificialIntelligenceInOS
AI & ML Papers
Photo
πŸ”₯ Qwen-AgentWorld: Language World Models for General Agents

πŸ’‘ The paper Qwen-AgentWorld introduces language-based world models for general agents, enabling the simulation of agentic environments across multiple domains and improving downstream task performance. The authors focus on building foundation models for agentic environment simulation and introduce two language world models, Qwen-AgentWorld-35B-A3B and Qwen-AgentWorld-397B-A17B, which can simulate agentic environments in 7 domains using long chain-of-thought reasoning.

The models were developed through a three-stage training pipeline, consisting of CPT, SFT, and RL, which inject general-purpose world modeling capabilities, activate next-state-prediction reasoning, and sharpen simulation fidelity, respectively. The training data consists of over 10 million environment interaction trajectories from 7 domains in real-world environments.

To evaluate the language world models, the authors present AgentWorldBench, a comprehensive benchmark constructed from real-world interactions of 5 frontier models on 9 established benchmarks. The results demonstrate that Qwen-AgentWorld significantly outperforms existing frontier models.

The paper also explores two complementary paradigms through which world modeling enhances general agents. First, Qwen-AgentWorld can be used as a decoupled environment simulator, supporting scalable and controllable simulation of thousands of real-world environments for agentic reinforcement learning, resulting in gains that surpass real-environment training alone. Second, world-model training can act as a highly effective warm-up, improving downstream performance across 7 agentic benchmarks.

Overall, the paper contributes to the development of language-based world models for general agents, demonstrating their potential for simulating agentic environments and improving downstream task performance. The code for Qwen-AgentWorld is made available, allowing for further research and development in this area.


πŸ“… Published on Jun 23

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.24597
β€’ PDF: https://arxiv.org/pdf/2606.24597

πŸ€– Models citing this paper:
β€’ https://huggingface.co/Qwen/Qwen-AgentWorld-35B-A3B
β€’ https://huggingface.co/unsloth/Qwen-AgentWorld-35B-A3B-GGUF
β€’ https://huggingface.co/lovedheart/Qwen-AgentWorld-35B-A3B-NVFP4

πŸ“Š Datasets citing this paper:
β€’ https://huggingface.co/datasets/Qwen/AgentWorldBench
β€’ https://huggingface.co/datasets/XuehangCang/agentworld-safety-qa

πŸš€ Spaces citing this paper:
β€’ https://huggingface.co/spaces/geraldamasi/agentworld-demo
β€’ https://huggingface.co/spaces/tuandunghcmut/qwen-agentworld-agent
β€’ https://huggingface.co/spaces/chabab/qwen-agentworld-35b-zerogpu

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#LanguageWorldModels #AgenticEnvironmentSimulation #FoundationModelsForAgents #LongChainOfThoughtReasoning #AgentBasedWorldModels
❀1
πŸ”₯ DomainShuttle: Freeform Open Domain Subject-driven Text-to-video Generation

πŸ’‘ The paper introduces DomainShuttle, a method for open domain subject-driven text-to-video generation that achieves high fidelity and flexibility across different scenarios. The problem with existing methods is that they focus on maximizing subject fidelity in in-domain scenarios, which limits their ability to adapt to cross-domain scenarios where subject-irrelevant properties need to vary according to the text prompt. DomainShuttle addresses this issue by introducing domain-aware modeling and a dual RoPE scheme. The method uses Domain-MoT to decouple videos and reference features, and domain-aware AdaLN for domain-specific modeling of reference images. It also uses the Video-Reference DualRoPE scheme to enable precise subject-level spatial modeling, and Cross-Pair Consistent Loss to extract intrinsic subject features unaffected by irrelevant features. The results of extensive experiments show that DomainShuttle achieves significant performance improvements over existing methods, demonstrating high subject fidelity and generative flexibility across diverse open domain application scenarios. This means that DomainShuttle can generate high-quality videos that retain the key features of the subject while also allowing for flexible editing and adaptation to different styles, semantic combinations, or domain attributes. Overall, the paper proposes a novel approach to text-to-video generation that can flexibly shuttle between different domains, making it a valuable contribution to the field of open domain subject-driven text-to-video generation.


πŸ“… Published on Jun 24

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.26058
β€’ PDF: https://arxiv.org/pdf/2606.26058
β€’ Project Page: https://cn-makers.github.io/DomainShuttle/

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#TextToVideoGeneration #OpenDomainGeneration #SubjectDrivenGeneration #DomainAwareModeling #TextToVideoSynthesis
πŸ”₯1
πŸ”₯ ShutterMuse: Capture-Time Photography Guidance with MLLMs

πŸ’‘ The paper introduces a new benchmark and dataset for photography assistance, focusing on capture-time guidance for both camera framing and subject pose. Existing models primarily evaluate post-hoc crop prediction and overlook subject-side recommendations, leaving a gap in the capabilities of multimodal large language models. To address this, the researchers developed CaptureGuide-Bench, a benchmark with two tasks: photographer-side composition decision and refinement, and subject-side scene-conditioned pose recommendation. They also constructed CaptureGuide-Dataset, comprising 130K samples with textual rationales and visual annotations.

The researchers then developed ShutterMuse, a unified multimodal large language model trained with supervised and reinforcement fine-tuning. ShutterMuse provides both composition guidance and pose recommendations during image capture. The evaluation reveals that general-purpose models can make composition decisions but lack precise refinement localization, while specialized aesthetic cropping models localize crops effectively but are limited to refinement and do not provide pose guidance.

The experiments on CaptureGuide-Bench show that ShutterMuse achieves the best overall photographer-side performance among evaluated baselines and competitive subject-side pose recommendation with lower inference cost. This demonstrates the potential of multimodal large language models as interactive assistants for photography during image capture, addressing the need for capture-time guidance in real-world photography. The paper contributes to the development of models that can provide effective guidance for both camera framing and subject pose, making it a significant step forward in the field of photography assistance.


πŸ“… Published on Jun 24

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.25763
β€’ PDF: https://arxiv.org/pdf/2606.25763
β€’ Project Page: https://lijayutnt.github.io/ShutterMuse/

πŸ€– Models citing this paper:
β€’ https://huggingface.co/ShutterMuse/ShutterMuse

πŸ“Š Datasets citing this paper:
β€’ https://huggingface.co/datasets/ShutterMuse/CaptureGuide-Bench

πŸš€ Spaces citing this paper:
β€’ https://huggingface.co/spaces/ShutterMuse/ShutterMuse-Video-Demo

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#MultimodalLargeLanguageModels #CaptureTimeGuidance #PhotographyAssistance #CameraFramingTechniques #MultimodalLearningModels
πŸ”₯ MemSlides: A Hierarchical Memory Driven Agent Framework for Personalized Slide Generation with Multi-turn Local Revision

πŸ’‘ The paper presents MemSlides, a hierarchical memory framework for personalized presentation agents that enables stable personalization and reliable local edits across multi-turn revisions. The problem addressed is that current presentation generation methods are unable to preserve stable user preferences across tasks and retain newly introduced preferences and constraints during multi-turn revision. To solve this, MemSlides separates long-term user profiles, working memory for session constraints, and tool memory for reusable execution experiences.

The method involves a hierarchical memory design that stores intent-conditioned profiles for round-0 personalization in user profile memory, carries active preferences and session constraints across revision rounds in working memory, and stores reusable execution experience for reliable localized editing in tool memory. This memory design is paired with scoped slide-local revision, which allows targeted updates to act on the smallest affected region instead of regenerating the full deck.

The results show that user profile memory improves persona-alignment judgments, tool-memory injection improves closed-loop modify behavior, and working memory is able to carry over preferences. The experiments were conducted in controlled settings, including a multi-persona, multi-intent profile bank and diagnostic matched-pair settings. The results suggest that effective personalization in presentation authoring depends on separating persistent user profiles, session-level working memory, and reusable execution experience across generation and localized revision. Overall, MemSlides provides a framework for personalized presentation agents that can generate and revise presentations in a way that is tailored to individual users and their preferences.


πŸ“… Published on Jun 15

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.17162
β€’ PDF: https://arxiv.org/pdf/2606.17162
β€’ Project Page: https://memslides.github.io/

πŸš€ Spaces citing this paper:
β€’ https://huggingface.co/spaces/huohua325/MemSlides

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#PersonalizedPresentationAgents #HierarchicalMemoryFramework #MultiTurnRevision #LocalEditPreservation #IntelligentSlideGeneration
❀1
πŸ”₯ UnityShots: Memory-Driven Multi-Shot Audio-Video Generation with Boundary-Aware Gating

πŸ’‘ The paper presents UnityShots, a memory-driven audio-video generation system that can generate coherent multi-shot videos. The problem addressed is that existing approaches to generating multi-shot videos either cannot scale or do not maintain consistent subject appearance and audio across video cuts. To solve this, UnityShots uses a combination of fixed-size long-term and short-term memory slots, boundary-conditioned gates, and discrete cut-type priors to maintain consistency across shots. The system consists of two streams, video and audio, where the video stream uses two fixed-size slots to store information about the opening shot and the immediately preceding shot, and the audio stream uses a reference speaker token to preserve vocal timbre. The boundary-conditioned gate updates the memory slots at every cut, and the discrete cut-type prior allows for control over transition strength between shots. The system was trained on annotated cinematic and music-video shots and evaluated on a benchmark of 200 multi-cultural multi-shot sequences. The results show that UnityShots outperforms open-source baselines on every cross-shot coherence metric and matches the performance of the strongest closed-source system. The paper also releases a benchmark of multi-shot sequences with per-shot reference identities, reference audio, and per-boundary transition labels, which can be used for future research. Overall, UnityShots provides a new approach to generating coherent multi-shot videos that can maintain consistent subject appearance and audio across video cuts.


πŸ“… Published on Jun 19

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.21661
β€’ PDF: https://arxiv.org/pdf/2606.21661
β€’ Project Page: https://jackailab.github.io/Projects/UnityShots/

πŸ“Š Datasets citing this paper:
β€’ https://huggingface.co/datasets/KlingTeam/UnityShotsBench

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#AudioVideoGeneration #MultiShotVideo #BoundaryAwareGating #MemoryDrivenGeneration #CoherentVideoGeneration
❀1
There are hundreds of AI channels on YouTube. Here's why we made another one.

Most AI content does one of two things: it stays so surface-level it teaches you nothing, or it goes so deep you need a PhD to follow along.

We built Guidely for everyone in between.

β†’ We start with absolute beginners in mind
β†’ Then take you deeper, until the details actually click
β†’ Every guide is reviewed by experienced AI engineers
β†’ We don't make more content. We make better content.
Whether you build, design, or market products, our goal is simple: leave you thinking "I've never seen it broken down this well."

Two good places to start πŸ‘‡

β†’ AI vs ML vs Deep Learning vs GenAI ... But Done Right!
The terms everyone uses. The distinctions are almost never explained clearly. We fix that: youtu.be/72yyLA2wRWc

β†’ How to Break into AI Engineering in 2026
A senior applied scientist shares what actually matters:  youtu.be/42vE7Ij4kdU

If AI has ever felt overwhelming or noisy, this channel is for you. If the content resonates with you, please don’t forget to like and subscribe.
AI & ML Papers pinned Β«There are hundreds of AI channels on YouTube. Here's why we made another one. Most AI content does one of two things: it stays so surface-level it teaches you nothing, or it goes so deep you need a PhD to follow along. We built Guidely for everyone in between.…»
AI & ML Papers
Photo
πŸ”₯ ViQ: Text-Aligned Visual Quantized Representations at Any Resolution

πŸ’‘ The paper introduces ViQ, a visual quantization framework that aims to balance semantic richness and detail preservation in discrete representations of images. The goal is to create a unified representation for text and vision that enables simpler multimodal modeling and more efficient training. Existing methods struggle to balance low-level details and high-level semantics in discrete representations, often resulting in severe information loss.

The ViQ framework addresses this issue by structuring quantization learning into two stages: text-aligned pre-training and feature discretization. In the first stage, the visual encoder is pre-trained with semantic-rich supervision from a pre-trained language model, allowing it to process native-resolution visual inputs. In the second stage, a proximal representation learning strategy is used to progressively compact the feature space, along with a position-aware head-wise quantization mechanism that enables flexible processing of arbitrary resolutions.

The results show that ViQ achieves competitive performance compared to state-of-the-art multimodal vision encoders with continuous and high-dimensional visual features, while maintaining high precision in low-level reconstruction. Additionally, multimodal training with visual quantized representations using ViQ leads to significant efficiency improvements, with up to 20-70 percent acceleration in training time compared to different base language models and training recipes. Overall, the paper presents a novel approach to visual quantization that balances semantics and details in discrete representations, enabling more efficient and effective multimodal modeling.


πŸ“… Published on Jun 25

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.27313
β€’ PDF: https://arxiv.org/pdf/2606.27313

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#VisualQuantization #MultimodalModeling #TextVisionAlignment #DiscreteRepresentations #ImageQuantization
AI & ML Papers
Photo
πŸ”₯ JetSpec: Breaking the Scaling Ceiling of Speculative Decoding with Parallel Tree Drafting

πŸ’‘ The paper introduces JetSpec, a speculative decoding framework designed to improve the inference speed and acceptance rates of large language models. The problem addressed is the scaling limitation of speculative decoding, which accelerates autoregressive large language models by drafting multiple tokens and verifying them in parallel. However, increasing the draft budget only improves speed when acceptance remains high and drafting overhead stays low, creating a scaling ceiling.

The proposed JetSpec framework combines efficient forward drafting with causal conditioning to break this ceiling. It trains a causal parallel draft head over fused hidden states from the frozen target model, producing candidate trees whose scores align with the target model's autoregressive factorization. This approach enables JetSpec to convert larger draft budgets into longer accepted prefixes and higher end-to-end speedup.

The method is compared to bidirectional-head and tree-based speculative decoding baselines across various benchmarks, including math, coding, and chat tasks on dense and MoE models. The results show that JetSpec consistently outperforms these baselines, achieving significant speedup on different workloads. Specifically, JetSpec achieves up to 9.64x speedup on math tasks and 4.58x on open-ended conversational workloads, with further latency gains demonstrated through integration with virtual large language models under realistic serving loads.

Overall, the paper contributes a novel speculative decoding framework that breaks the scaling ceiling of prior methods, enabling faster and more efficient large language model inference. The code and models are made available for further research and development.


πŸ“… Published on Jun 25

πŸ”— Links:
β€’ GitHub: https://github.com/huggingface
β€’ arXiv: https://arxiv.org/abs/2606.18394
β€’ PDF: https://arxiv.org/pdf/2606.18394
β€’ Project Page: https://jetspec-project.github.io/jetspec-web/

━━━━━━━━━━━━━━━━━━━━━━━━
πŸ“’ By: https://t.iss.one/PaperNexus

#SpeculativeDecoding #LargeLanguageModels #AutoregressiveModeling #ParallelTreeDrafting #CausalConditioning