{% extends "base.html" %} {% block content %}

Query Model

Run predictions against your trained model or review SHAP-based explanations

{% if not has_model %}
No model exported yet.
  1. Go to Run and approve select_algos gate.
  2. Click Run Pipeline — the export_model node will produce your model file.
  3. Come back here to query it.
{% else %}
🎯 Predict
🔍 Explain
{# ── Predict panel ── #}
{% if not features %}
No feature profile found. Run the pipeline through the profile node first.
{% else %}
Enter feature values
{% for feat in features %}
{% endfor %}
{% endif %}
{# ── Explain panel ── #}
{% endif %} {% endblock %}