{% extends "base.html" %} {% block head %} {% endblock %} {% block toolsnav %} {% endblock %} {% block toolsextra %} {% endblock %} {% block page %}
text-specifics
words with a TF-IDF score > 0.01

NOTE: the "specificity" scanning does not work when different languages are mixed

{% for filename in index.keys() %}

{{filename}}

{% if 'tfidf' in index[filename].keys() %} {% for word, value in index[filename]['tf'].items() %} {% if value > 0.01 %} {{ word }}({{ value}})
{% endif %} {% endfor %} {% endif %}
{% endfor %}s
{% endblock %}