TLDR: This research introduces a novel method to detect AI assistance in abstract, complex tasks by converting user behavioral data into image and time-series formats. Deep learning models, particularly a modified ResNet with LSTM, successfully classify AI-aided efforts with high accuracy (up to 86.64%), demonstrating that AI assistance can be identified without prior knowledge of the AI’s internal workings, relying instead on insights into human behavior.
As artificial intelligence systems become increasingly integrated into our daily lives, assisting with everything from text generation to complex problem-solving, a critical challenge has emerged: how do we reliably detect when a person has received AI assistance, especially in abstract tasks? Traditional methods often struggle when the data isn’t straightforward or “machine learning-friendly.”
A recent research paper, “Detecting AI Assistance in Abstract Complex Tasks”, proposes a novel solution to this growing problem. Instead of trying to understand the inner workings of the AI assistant, the researchers suggest transforming the abstract behavioral data generated during a task into formats that deep learning models can readily process, specifically images and time series.
The study focused on an experimental task where human participants tuned on-screen dials to find optimal settings in simulated “landscapes” – some simple (1-peak) and some complex (4-peak). Participants performed these tasks both alone and with an AI helper. The key innovation was converting the participants’ search efforts into 24×24 pixel images. This involved mapping dial settings to image dimensions (X and Y) and the resulting “elevation” to pixel values.
To capture different aspects of human behavior, four distinct image formulations were created:
Also Read:
- Decoding Game Play Styles with AI: A Deep Learning Approach
- Bridging the Gap: Visual Analytics for Transparent and Reliable AI
Image Formulations
- Sharp Image Matrix (SharpIM): A single-channel image where only visited locations have a value corresponding to their “elevation.”
- Smooth Image Matrix (SmoothIM): Applies a smoothing filter to SharpIM, connecting edge pixels to represent the continuous nature of the landscape.
- Basic Multi-Channel Image Matrix (bmcIM): A three-channel image including the height map, a binary layer indicating visited nodes, and a ternary layer distinguishing between “exploration” (searching new areas) and “exploitation” (refining search in known areas) movements.
- Complex Multi-Channel Image Matrix (cmcIM): A five-channel image that builds on bmcIM by adding two more binary layers to specifically track horizontal and vertical exploration movements.
In addition to these image formulations, an auxiliary time-series dataset was developed to explicitly encode the sequence of exploration and exploitation states, capturing the temporal dimension of decision-making.
The researchers then tested these data formulations on various deep neural network architectures, including LeNet-5, ResNet-18, and a modified version called SB-ResNet-18 (Single Block ResNet-18). For the time-series data, Long Short-Term Memory (LSTM) networks were used. A parallel CNN-RNN architecture was also employed, combining the outputs from the image models and the LSTM for enhanced performance.
The experimental results were promising. The models consistently achieved performance significantly better than random chance. Notably, the combination of the SB-ResNet-18 architecture with the five-channel cmcIM formulation, supplemented by the LSTM time-series data, yielded the highest testing accuracy, reaching 86.64% when hyperparameter tuned. This highlights the importance of encoding both temporal and spatial information related to user behavior.
Interestingly, smaller model architectures like SB-ResNet-18 and LeNet-5 often outperformed the larger ResNet-18, suggesting that for this specific dataset size, a more compact model architecture was better suited to avoid overfitting. The study also found that detecting AI assistance was generally easier in more complex (4-peak) landscapes, possibly because the AI’s systematic approach stood out more against human behavior in such challenging environments.
A key takeaway from this research is its generalizability. The method does not rely on knowing the specific algorithms or functions of the AI assistant. Instead, it leverages fundamental insights into how humans approach complex search tasks. This makes the approach adaptable to various AI assistance scenarios, from educational tools to autonomous driving systems, where identifying AI involvement is becoming increasingly crucial.


