{% extends "base.html" %} {% block title %}Search - PRISMA{% endblock %} {% block content %}

Search

Hybrid search across documents and features (BM25 + Semantic + kNN)

{% if query %} {% if results %}
Documents {{ results|length }}
{% for doc in results %} {% endfor %}
Score ID Text
{{ doc.score|floatformat:3 }} {{ doc.external_id|default:doc.django_id }} {{ doc.text|truncatechars:300 }}
{% elif selected_dataset %}

No document results found.

{% endif %} {% if feature_results %}
Features {{ feature_results|length }}
{% for feat in feature_results %} {% endfor %}
Score # Label Description Density Max Act
{{ feat.score|floatformat:2 }} {% if selected_run %} {{ feat.feature_index }} {% else %} {{ feat.feature_index }} {% endif %} {{ feat.label }} {{ feat.description|truncatechars:200 }} {{ feat.density|floatformat:4 }} {{ feat.max_activation|floatformat:2 }}
{% elif selected_run %}

No feature results found.

{% endif %} {% if not selected_dataset and not selected_run %}

Select a Dataset and/or SAE Run to search.

{% endif %} {% endif %} {% endblock %}