File size: 578 Bytes
0f166dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# Insight Report
**User Query**: {{ user_query }}
**Plan**: {{ plan.steps }}
**Rationale**: {{ plan.rationale }}
{% if sql_preview %}
## SQL Preview
{{ sql_preview }}
{% endif %}
{% if predict_preview %}
## Predictions Preview
{{ predict_preview }}
{% endif %}
{% if explain_images.global_bar %}
## Global Feature Importance (SHAP)
<img src="{{ explain_images.global_bar }}" style="max-width: 100%;" />
{% endif %}
{% if explain_images.beeswarm %}
## SHAP Beeswarm
<img src="{{ explain_images.beeswarm }}" style="max-width: 100%;" />
{% endif %} |