Skip to content

Author

Xiaocao Ouyang

2 papers indexed here

We haven’t gathered this author’s papers yet. Follow them and we’ll fetch their work.

Not the right person? Other researchers publish under this name.

Book Open access Aug 2026

TS-MTM: Temporal-Spectral Masked Time-Series Modeling for Forecasting

Time series forecasting is a cornerstone of numerous real-world applications, where prediction accuracy relies on capturing intricate periodic patterns and evolving spectral dynamics. While Masked Time-series Modeling (MTM) has emerged as a powerful self-supervised paradigm, its conventional one-dimensional (1D) formulation often fails to resolve the underlying structural dependencies essential for long-term forecasting explicitly. To address this limitation, we propose TS-MTM, a Temporal-Spectral Masked Time-series Modeling framework that formalizes pretraining within a joint representation space. By leveraging autocorrelation-based periodicity, TS-MTM transforms 1D sequences into period-aware 2D temporal-spectral representations, a transition grounded in stochastic-process theory. Within this augmented space, we introduce two synergistic mechanisms: Axial-Period Cross Masking (APCM) to capture temporal dependencies across phases, and Structure-aware Spectral Magnitude Masking (SSMM) to reconstruct global frequency-domain signatures. To ensure representation consistency, a Dual-domain Contextual Contrastive objective is employed to align these complementary views on the signal manifold, yielding unified embeddings that preserve temporal-spectral coherence. Extensive evaluations across nine benchmark datasets demonstrate that TS-MTM consistently achieves state-of-the-art performance under both in-domain and cross-domain settings, underscoring its robustness and generalization for complex temporal dynamics. Code is available at https://github.com/zpc2002zpc/TS-MTM.

Pengcheng Zhang, Xiaocao Ouyang, Xin Li et al. · 0 citations
Review Jul 2026

Zero-Mem: Zero-Token Memory Operations for LLM Agents

LLM agents need memory to act consistently over long interactions, yet many systems use additional LLM calls to operate that memory. Generating intermediate records and mediating their retrieval adds recurring token and time costs, while omitted or merged details can obscure the original evidence. We ask whether structured memory access requires generation at all. Zero-Mem introduces \emph{zero-token memory operations}: no step outside final question answering invokes an LLM or consumes LLM input or output tokens; encoder computation is accounted for separately. Zero-Mem preserves original interaction traces as its source of record. It organizes the traces in two complementary ways. An entity--context graph exposes connections across interactions, while a temporal hierarchy preserves conversational locality and session state. For each query, Zero-Mem weighs the two views, retrieves from both, and follows their structure to recover supporting relations or surrounding context. Deterministic calibration first discards conflicting evidence and then keeps the reader's answer grounded in the retrieved traces. Only the final-QA reader invokes an LLM. Across long-memory and long-context question-answering benchmarks, Zero-Mem achieves competitive performance while eliminating LLM calls and LLM-token consumption from memory operations. With the same final-QA reader and context budget, it reduces memory-operation time cost by 57.6\% relative to the fastest compared baseline. Ablations support the contribution of the two views and their query-dependent coordination. Overall, the results show that structured agent memory need not generate an intermediate representation of the past. After peer review, the code and implementation details will be available at \textcolor{blue}{https://github.com/TheMoon0815/Zero-mem}.

Yilin Xiao, Zhehan Zhu, Yujing Zhang et al. · 0 citations