{% extends "en/base.html" %} {% block results %}
Exchanges between a collection of cyber/technofeminist manifestos
and the Term Frequency - Inversed Document Frequency algorithm (TF-IDF).
  1. You can search for a word and see if it creates any cross-readings in the collection.
  2. You can browse through the collection of manifestos and read them in their own web environnments.
  3. If you click on the little ◐ icon next to the title of the manifesto, you can read the manifesto through the TF-IDF algorithm.
{% endblock %} {% block suggestions %}

Cross-reading suggestions (selected):

{% for word in suggestions %} {{ word.strip() }} {% endfor %}

Cross-reading suggestions (top 100 TF-IDF results):

{% for word in mappings %} {{ word }} {% endfor %}

Read more about the TF-IDF algorithm and contrast mappings.



{% endblock %}