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 %}