{% if expl.is_regression %}
{{ target.target }}
{% else %}
y={{ target.target }}
{% endif %}
{% if target.proba is not none or target.score is not none %}
{% set comma = joiner(", ") %}
(
{%- if target.proba is not none -%}
{{ comma() }}probability {{ "%0.3f"|format(target.proba) }}
{%- endif -%}
{%- if target.score is not none -%}
{{ comma() }}score {{ "%0.3f"|format(target.score) }}
{%- endif -%}
)
{% endif %}
top features