AnomalyDetectionAccuracy
The evaluation will assess the accuracy of anomaly detection, the effectiveness of the interactive agent, and the quality and relevance of the AI-generated explanations. Participants will provide their Python code and a demonstration of the interactive system.
Evaluation overview
How the linked challenge is judged: tasks, benchmarks, and criteria count.
Task templates
Inputs and expected outputs.
AnomalyDetectionAccuracy
Evaluates the precision, recall, and F1-score of the anomaly detection model on a hidden test dataset of synthetic orbital telemetry with known anomalies.
JSON array of time-series orbital telemetry data (e.g., {'timestamp': ..., 'sma': ..., 'inc': ..., 'ecc': ...}) with a 'true_anomaly_label' field.
JSON array of predictions for each data point (0 for normal, 1 for anomaly) and an associated confidence score.
ExplanationQuality
Evaluates the relevance, coherence, and actionable insights of the explanations generated by the Anthropic API via the Langroid agent for specific detected anomalies.
JSON object containing a detected anomaly's features and metadata (e.g., {'anomaly_id': 'AX123', 'features': {'sma_change': 50, 'inc_change': 0.1}, 'detection_time': '2025-11-28T10:00:00Z'}).
JSON object with a 'explanation_text' field (string) and 'action_recommendations' (array of strings).