Weighted Score Lab
Adjust the weights for each action to see how the final score changes. Understand the weighted sum logic in Phoenix Scoring.
Weight Adjustment
Presets & Strategy Meanings
Score Calculation
Score Breakdown
Insight
Adjust the weights to see which factors have the biggest impact on the score.
Core Algorithmic Principles
Multi-Target Prediction (Phoenix Scorer)
As a user scrolls, the Phoenix Model (a Transformer-based ranker) predicts a set of engagement probabilities (P(action)) for that specific user. These predictions are **independent and simultaneous**, e.g., "What is the probability this user will Favorite this tweet?" or "What is the probability they will Reply?"
Weighted Summation (Weighted Scorer)
The system does not value all actions equally. Different interactions contribute differently to a tweet's "Heat Score." The Weighted Scorer multiplies each predicted probability by a predefined system weight:
Final Score = Σ (weight_i × P(action_i)) For example, a **Reply** usually carries significantly more weight than a Like. This is why "active conversations" drive much more reach than passive engagement.
Negative Signal Penalties
Critically, the system applies massive **negative weights** to actions like "Not Interested," "Mute," or "Report." Even if P(Like) is high, a slight increase in predicted negative feedback can cause the final score to crash, effectively stopping content distribution.