Papers for

cloud service teams

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Large Language Model improves document clustering accuracy and speed

RAILS: Retrieval-Augmented Incremental LLM Clustering at Scale

Abstract: Using a Large Language Model (LLM) as the clusterer at production scale is hard: prompts cannot hold the entire label space, and per-document serial processing does not deliver the throughput real workloads require. We present RAILS, a retrieval-augmented incremental LLM clusterer that turns clustering into a simple loop over a growing label pool and scales through document batching with bounded concurrency. On six public benchmarks RAILS exceeds the strongest prior LLM-clustering method on average, lifting accuracy from 51.2% to 59.3%, NMI from 67.2% to 74.8%, and ARI from 45.4% to 54.7%. We further report production-deployment evidence from a SaaS ticket-topic-discovery pipeline, where RAILS has replaced a traditional HDBSCAN stage with higher clustering quality, transparent prompt-driven control, and stateful incremental operation.

Mon 21 SeptMachine Learning
The gist
Clustering groups similar documents, but using large language models (LLMs) for this is hard because they can't handle too many labels at once and are often slow when working on documents one by one. The authors present RAILS, a method that helps LLMs cluster documents faster and better by retrieving information and adding labels incrementally while processing multiple documents in batches. RAILS showed better results than earlier methods on six public tests and worked well in a real-life software service helping with ticket topic discovery. This system can replace older clustering methods with easier control and better quality.
Open 2609.24464v1

Co-evolving routing and learning improves efficiency in multi-agent systems

CERA-MoA: Co-Evolving Routing Mechanisms with Continually Learning LLM Agents

Abstract: Current Mixture-of-Agents (MoA) paradigms generally treat query routing and agent fine-tuning as separate processes, limiting their ability to respond to evolving agent capabilities. This disconnect prevents routing strategies from adapting to evolving agent capabilities during post-training and prevents agents from achieving synergistic data-driven specialization. To resolve this, we introduce CERA-MoA (Co-Evolving Router with continually learning Agents for Mixture-of-Agents), an iterative reinforcement learning framework where the dynamic router and independent agent policies co-evolve. We design a predictive familiarity estimator that leverages mid-layer hidden states to evaluate semantic competence among agents, avoiding the overhead of full rollouts. Based on these familiarity scores, a cumulative-threshold adaptive routing mechanism dynamically activates a tailored minimal agent subset, achieving a trade-off between task performance and efficiency. By proactively allocating targeted training samples to agents based on their evolving competence, CERA-MoA promotes capability differentiation. Extensive experiments across various domains demonstrate that CERA-MoA outperforms state-of-the-art static-agent routing and fix-workflow fine-tuning baselines.

Wed 16 SeptArtificial IntelligenceMachine Learning
The gist
When multiple AI agents work together, deciding which agent should handle each task is important but usually separate from how the agents learn. This paper shows that by letting the routing system and the agents learn and improve together over time, the overall system can get better and faster. The authors created a method that predicts which agent is most suitable without doing long tests and routes tasks to only the necessary agents. This approach encourages agents to specialize in different tasks and outperforms older methods that treat routing and learning separately.
Open 2609.18779v1

Efficient encrypted deep learning inference with logic gate networks

EI-DDLGN: Efficient Encrypted Inference with Deep Differentiable Logic Gate Networks under TFHE

Abstract: Privacy-preserving inference via Torus Fully Homomorphic Encryption (TFHE) provides strong protection for sensitive data in outsourced deep learning applications. However, most TFHE-compatible neural network frameworks remain based on arithmetic neural architectures, resulting in high inference latency due to programmable bootstrapping (PBS), accumulator growth, and circuit bit-width sensitivity. In this work, we investigate Deep Differentiable Logic Gate Networks (DDLGNs) as a Boolean-native alternative for encrypted inference under TFHE. Because DDLGNs learn Boolean computations directly and discretize into fixed logic gate networks, their inference procedure is naturally aligned with TFHE's Boolean execution model and avoids arithmetic accumulation in hidden layers. We present EI-DDLGN, the first in-depth study of TFHE-based DDLGN inference, and characterize how encrypted execution cost depends on model size, learned Boolean-function distribution, and propagated wire status. We also introduce Model-Fixed-Wire PBS Bypass (MFW-PBS Bypass), a semantics-preserving execution strategy that eliminates unnecessary PBS operations without modifying the learned network topology. Evaluations across 72 depth-width configurations on MNIST, FashionMNIST, and UCI Phishing show that DDLGNs constitute an efficient alternative to arithmetic TFHE inference, achieving substantially improved accuracy-latency trade-offs. Notably, on MNIST, EI-DDLGN-Small matches the accuracy of QAT-FCNN-4 while reducing encrypted inference latency by 13.4x. Our implementation is available at https://github.com/Carleton-SCI/EI-DDLGN

Sat 12 SeptCryptography and SecurityMachine Learning
The gist
Deep learning models can protect your data by doing their calculations while the data stays encrypted, but this usually takes a lot of time. The authors studied a new way to run these secure calculations by using logic gates, which computers use to handle simple true-or-false operations. Their method fits well with the encryption type they use and speeds up the process while keeping accuracy high. They tested this idea on common image and data sets and found it much faster than traditional methods without losing quality.
Open 2609.13636v1