{{ stats.n_algorithms }} algorithm{{ 's' if stats.n_algorithms != 1 else '' }} · {{ stats.n_documents }} document{{ 's' if stats.n_documents != 1 else '' }} {% if stats.n_candidates %} · {{ stats.n_candidates }} candidates {% endif %} · {{ elapsed }}s total
{% if results %}
{% for algo_name, terms in results.items() %}

{{ algo_name }}

{{ full_counts[algo_name] }} total · showing top {{ terms | length }} CSV JSON
{% if terms %} {% for term in terms %} {% endfor %}
# Term Score Freq
{{ loop.index }} {{ term.string }} {{ "%.4f" | format(term.score) }} {{ term.frequency }}
{% else %}

No terms extracted.

{% endif %}
{% endfor %}
{% else %}

No results.

{% endif %}