LPX
commited on
Commit
·
e8835e7
1
Parent(s):
7812ef2
fix: correct string formatting in anomaly detection logging
Browse files- app_mcp.py +1 -1
app_mcp.py
CHANGED
@@ -363,7 +363,7 @@ def predict_image_with_json(img, confidence_threshold, augment_methods, rotate_d
|
|
363 |
|
364 |
# 8. Analyze forensic outputs for anomalies using ForensicAnomalyDetectionAgent
|
365 |
anomaly_detection_results = anomaly_agent.analyze_forensic_outputs(forensic_output_descriptions)
|
366 |
-
logger.info(f"Forensic anomaly detection: {anomaly_detection_results[
|
367 |
|
368 |
|
369 |
# Prepare table rows for Dataframe (exclude model path)
|
|
|
363 |
|
364 |
# 8. Analyze forensic outputs for anomalies using ForensicAnomalyDetectionAgent
|
365 |
anomaly_detection_results = anomaly_agent.analyze_forensic_outputs(forensic_output_descriptions)
|
366 |
+
logger.info(f"Forensic anomaly detection: {anomaly_detection_results['summary']}")
|
367 |
|
368 |
|
369 |
# Prepare table rows for Dataframe (exclude model path)
|