paper-with-me

홈 › Papers

SAINT: Attention-Based Modeling of Sub-Action Dependencies in Multi-Action Policies

2025-05-17 · Matthew Landers, Taylor W. Killian, Thomas Hartvigsen, Afsaneh Doryab

The combinatorial structure of many real-world action spaces leads to exponential growth in the number of possible actions, limiting the effectiveness of conventional reinforcement learning algorithms. Recent approaches for combinatorial action spaces impose factorized or sequential structures over sub-actions, failing to capture complex joint behavior. We introduce the Sub-Action Interaction Network using Transformers (SAINT), a novel policy architecture that represents multi-component actions as unordered sets and models their dependencies via self-attention conditioned on the global state. SAINT is permutation-invariant, sample-efficient, and compatible with standard policy optimization algorithms. In 15 distinct combinatorial environments across three task domains, including environments with nearly 17 million joint actions, SAINT consistently outperforms strong baselines.

📄 PDF Abstract BibTeX arXiv:2505.12109

Code (1)

matthewlanders/saint 공식 구현 pytorch

Methods 이 논문이 사용한 방법론

Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…
Feedforward Network A Feedforward Network, or a Multilayer Perceptron (MLP), is a neural network with solely densely connected layers. This is the classic neural network architecture of the…
CutMix CutMix is an image data augmentation strategy. Instead of simply removing pixels as in Cutout, we replace the removed regions with…
Mixup Mixup is a data augmentation technique that generates a weighted combination of random image pairs from the training data. Given two images and their ground truth labels:…
SAINT SAINT is a hybrid deep learning approach to solving tabular data problems. SAINT performs attention over both rows and columns, and it includes an enhanced embedding method.…

Similar Papers 제목 키워드 기반

Towards an Appropriate Query, Key, and Value Computation for Knowledge Tracing

2020-02-14 · Youngduck Choi, Youngnam Lee, Junghyun Cho, Jineon Baek 외

Knowledge tracing, the act of modeling a student's knowledge through learning activities, is an extensively studied problem in the field of computer-aided education. Although models with attention mechanism have outperfo…

Collaborative FilteringDecoderKnowledge Tracing

SAINT+: Integrating Temporal Features for EdNet Correctness Prediction

2020-10-19 · Dongmin Shin, Yugeun Shim, Hangyeol Yu, Seewoo Lee 외

We propose SAINT+, a successor of SAINT which is a Transformer based knowledge tracing model that separately processes exercise information and student response information. Following the architecture of SAINT, SAINT+ ha…

DecoderKnowledge TracingPrediction

Integrating SAINT with Tree-Based Models: A Case Study in Employee Attrition Prediction

2026-04-11 · Adil Derrazi, Javad Pourmostafa Roshan Sharami arxiv

Employee attrition presents a major challenge for organizations, increasing costs and reducing productivity. Predicting attrition accurately enables proactive retention strategies, but existing machine learning models of…

Attention-Based Deep Learning for Early Parkinson's Disease Detection with Tabular Biomedical Data

2026-02-08 · Olamide Samuel Oseni, Ibraheem Omotolani Obanla, Toheeb Aduramomi Jimoh arxiv

Early and accurate detection of Parkinson's disease (PD) remains a critical challenge in medical diagnostics due to the subtlety of early-stage symptoms and the complex, non-linear relationships inherent in biomedical da…

Feature Engineering

GraphSAINT: Graph Sampling Based Inductive Learning Method

2019-07-10 · ICLR 2020 1 · Hanqing Zeng, Hongkuan Zhou, Ajitesh Srivastava, Rajgopal Kannan 외

Graph Convolutional Networks (GCNs) are powerful models for learning representations of attributed graphs. To scale GCNs to large graphs, state-of-the-art methods use various layer sampling techniques to alleviate the "n…

Graph AttentionGraph EmbeddingGraph Representation LearningGraph Sampling+3