{% extends 'base.html' %} {% load l10n %} {% block title %}Inference - PRISMĪ”{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Inference

{% csrf_token %}
{% if hist_x %}
Activation Distribution
{% endif %}
{% if analyzed_features %}
Active Features
{{ analyzed_features|length }} features found
{% if embedding_norm %}
Embedding Norm: {{ embedding_norm|floatformat:4 }}
{% endif %}
{% for feat in analyzed_features %} {% endfor %}
Index Activation Label
#{{ feat.index }}
{% with width_val=feat.activation_pct|stringformat:".1f" %}
{% endwith %}
{{ feat.activation|floatformat:4 }}
{% if feat.label %}
{{ feat.label }}
{% if feat.description %}
{{ feat.description }}
{% endif %} {% else %} Not interpreted {% endif %}
{% elif input_text %}

No active features found for this input.

{% else %}

Select a run and enter text to see active features.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}