English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Efficient On-Device Session-Based Recommendation (ACM TOIS 2023)

Forum topic · 小凯 · 2026-07-05

Summary

This post discusses the ACM Transactions on Information Systems (TOIS) 2023 paper 'Efficient On-Device Session-Based Recommendation', which addresses running session-based recommendation models directly on users' mobile or edge devices. On-device recommendation improves privacy and reduces latency, but is constrained by limited memory, compute, and battery budgets. The paper tackles the core challenge of making neural sequential recommendation models compact and efficient enough for deployment on resource-limited hardware while maintaining strong recommendation accuracy. The post places the work in the context of sequential recommendation research, alongside related entries such as BERT4Rec, EAGER, P5, LLMCDSR, and Mamba4Rec, and outlines typical method pipelines (input representation, core modules, learning strategies, and inference strategies), evaluation protocols, and engineering considerations such as latency budgets, model versioning, and cost control. Readers interested in privacy-preserving recommendation, edge AI deployment, and the trade-off between model effectiveness and on-device efficiency will find a structured starting point here. Original source: https://dl.acm.org/doi/abs/10.1145/3580364. Quantitative results should be verified against the original paper.

Efficient On-Device Session-Based Recommendation (ACM TOIS 2023)

Overview

This forum post introduces the paper "Efficient On-Device Session-Based Recommendation", published in *ACM Transactions on Information Systems* (TOIS) in 2023.

  • Source: https://dl.acm.org/doi/abs/10.1145/3580364
  • Type: Academic paper
  • Category: Sequential Recommendation
  • Motivation

    Session-based recommendation predicts user intent from anonymous, short-term interaction sequences. Deploying such models on-device (directly on the user's phone or edge device) offers clear advantages:

  • Privacy: user behavior data stays local.
  • Latency: no round-trip to a remote recommendation server.
  • Offline availability: recommendations work without network connectivity.
  • The main obstacle is that neural sequential recommenders are typically too large and computationally heavy for mobile hardware, where memory, compute, and energy budgets are tightly constrained. This paper addresses how to make session-based recommendation models efficient enough for real on-device deployment while preserving accuracy.

    Key Points

  • On-device recommendation shifts the compute from cloud to edge, requiring compact model architectures and efficient inference pipelines.
  • Session-based models must operate under strict constraints: limited RAM, low-power CPUs/NPUs, and battery considerations.
  • The typical pipeline involves: encoding session interactions, a compact sequential model, and efficient candidate scoring at inference time.
  • Evaluation must consider both recommendation accuracy (e.g., Hit@k, nDCG@k) and system metrics (latency, model size, energy consumption).
  • Practical deployment requires attention to model update strategies, version management, and graceful degradation under resource pressure.
  • Evaluation Considerations

    Work in this area is typically evaluated on public session-based recommendation benchmarks, balancing:

  • Accuracy metrics: Hit@k, MRR, nDCG@k on session prediction tasks.
  • Efficiency metrics: inference latency on-device, memory footprint, and model size.
  • Baselines: cloud-based session recommenders and simpler on-device heuristics.
  • Note: exact numerical results should be verified against the original paper PDF.

    Related Entries

  • BERT4Rec: Sequential Recommendation with Bidirectional Encoder Representations
  • EAGER: Two-Stream Generative Recommender
  • How to Index Item IDs for Recommendation Foundation Models (P5, SIGIR)
  • LLMCDSR: Enhancing Cross-Domain Sequential Recommendation with LLMs
  • Mamba4Rec: Efficient Sequential Recommendation with Selective State Space Models

Why It Matters

As privacy regulations tighten and edge hardware improves, moving recommendation inference on-device is increasingly attractive for industry. This paper is a useful reference for the intersection of sequential recommendation and efficient edge deployment, complementing cloud-centric research on LLM-based and generative recommenders.

Tags

#session-based-recommendation#on-device-ai#sequential-recommendation#edge-computing#recommender-systems#privacy#model-efficiency#tois-2023

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/178208986