Towards Neural Network based Cognitive Models of Dynamic Decision-Making by Humans

Changyu Chen,Shashank Reddy Chirra,Maria José Ferreira,Cleotilde Gonzalez,Arunesh Sinha,Pradeep Varakantham
2024-09-05
Abstract:Modeling human cognitive processes in dynamic decision-making tasks has been an endeavor in AI for a long time because such models can help make AI systems more intuitive, personalized, mitigate any human biases, and enhance training in simulation. Some initial work has attempted to utilize neural networks (and large language models) but often assumes one common model for all humans and aims to emulate human behavior in aggregate. However, the behavior of each human is distinct, heterogeneous, and relies on specific past experiences in certain tasks. For instance, consider two individuals responding to a phishing email: one who has previously encountered and identified similar threats may recognize it quickly, while another without such experience might fall for the scam. In this work, we build on Instance Based Learning (IBL) that posits that human decisions are based on similar situations encountered in the past. However, IBL relies on simple fixed form functions to capture the mapping from past situations to current decisions. To that end, we propose two new attention-based neural network models to have open form non-linear functions to model distinct and heterogeneous human decision-making in dynamic settings. We experiment with two distinct datasets gathered from human subject experiment data, one focusing on detection of phishing email by humans and another where humans act as attackers in a cybersecurity setting and decide on an attack option. We conducted extensive experiments with our two neural network models, IBL, and GPT3.5, and demonstrate that the neural network models outperform IBL significantly in representing human decision-making, while providing similar interpretability of human decisions as IBL. Overall, our work yields promising results for further use of neural networks in cognitive modeling of human decision making.
Machine Learning,Computers and Society
What problem does this paper attempt to address?
### Problems the Paper Aims to Solve The paper aims to address the issue of cognitive modeling in dynamic decision-making tasks for humans. Specifically, the goal of the paper is to establish high-fidelity, fine-grained, and data-driven models of human behavior in specific complex tasks. Traditional research methods often assume that the behavior of all individuals can be represented by a universal model or focus only on simple personalized models based on certain personality traits (such as impulsive or cautious types). However, in reality, each person's behavior is unique and depends on their specific experiences. For example, when faced with phishing emails, individuals with similar experiences may quickly identify the threat, while those without relevant experience may be deceived. To address this issue, the paper proposes two attention mechanism-based neural network models, namely the **Token-Level Personalized Memory Integrated Model (TL-PMIM)** and the **Instance-Level Personalized Memory Integrated Model (IL-PMIM)**. These models can better capture individuals' unique decision-making patterns by leveraging past memory instances. Compared to traditional Instance-Based Learning (IBL) models, these models provide richer mapping functions, thereby enhancing the representation of complex human behaviors. The paper conducts experimental validation using two different datasets: one dataset on human recognition of phishing emails and another on human decision-making as attackers in cybersecurity contexts. The experimental results show that the proposed neural network models significantly outperform traditional IBL models in representing human decision-making while providing similar decision interpretability. Overall, the work of the paper offers promising results for further application of neural networks in human decision modeling.