0
0
Agentic_aiml~12 mins

Computer use agents in Agentic Ai - Model Pipeline Trace

Choose your learning style8 modes available
Model Pipeline - Computer use agents

This pipeline shows how a computer use agent learns to assist users by observing their actions and predicting helpful next steps. It starts with collecting user activity data, processes it, trains a model to understand patterns, and then makes predictions to support the user.

Data Flow - 6 Stages
1Data Collection
1000 sessions x 10 featuresCollect user activity logs including clicks, typing speed, and app usage1000 sessions x 10 features
Session 1: {clicks: 15, typing_speed: 40 wpm, app: browser, time_spent: 5 min, ...}
2Preprocessing
1000 sessions x 10 featuresClean data, fill missing values, normalize numerical features1000 sessions x 10 features
Typing speed normalized from 40 wpm to 0.8 (scale 0-1)
3Feature Engineering
1000 sessions x 10 featuresCreate new features like average time between clicks and app switch frequency1000 sessions x 12 features
Added features: avg_click_interval=2 sec, app_switches=3
4Model Training
800 sessions x 12 featuresTrain agent model to predict next user actionTrained model
Model learns patterns to predict if user will open email next
5Validation
200 sessions x 12 featuresEvaluate model accuracy on unseen dataAccuracy score: 85%
Model correctly predicted next action in 170 out of 200 sessions
6Prediction
1 session x 12 featuresAgent predicts next helpful action for userPrediction: Open calendar app
Based on current activity, agent suggests calendar to user
Training Trace - Epoch by Epoch

Loss
0.7 |****
0.6 |*** 
0.5 |**  
0.4 |*   
0.3 |    
     1 2 3 4 5 Epochs
EpochLoss ↓Accuracy ↑Observation
10.650.60Model starts learning basic patterns
20.500.70Loss decreases, accuracy improves
30.400.78Model captures more user behavior details
40.320.83Good convergence, model is reliable
50.280.85Final epoch with stable performance
Prediction Trace - 5 Layers
Layer 1: Input Features
Layer 2: Neural Network Layer 1 (ReLU)
Layer 3: Neural Network Layer 2 (ReLU)
Layer 4: Output Layer (Softmax)
Layer 5: Decision
Model Quiz - 3 Questions
Test your understanding
What happens to the data shape after feature engineering?
AIt decreases in number of rows
BIt stays the same
CIt increases in number of columns
DIt becomes a single number
Key Insight
This visualization shows how a computer use agent learns from user activity data by transforming raw inputs into meaningful features, training a model that improves over time, and making predictions that help users by suggesting their next likely action.