cyber/technofeminist cross-reader
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

43 lines
1.4 KiB

{% extends "en/base.html" %}
{% block results %}
<blockquote>
Exchanges between a collection of <em>cyber/technofeminist manifestos</em><br>
and the <em>Term Frequency - Inversed Document Frequency algorithm (TF-IDF)</em>.
</blockquote>
<!-- <p>Psst, this is a cross-reading tool that operates on two axes ...</p> -->
<!-- <p>Tip: Try to search for a single word.</p> -->
<div class="guides">
<ol>
<li>
You can search for a word and see if it creates any cross-readings in the collection.
</li>
<li>
You can browse through the collection of manifestos and read them in their own web environnments.
</li>
<li>
If you click on the little ◐ icon next to the title of the manifesto, you can read the manifesto through the TF-IDF algorithm.
</li>
</ol>
</div>
{% endblock %}
{% block suggestions %}
<h1>Cross-reading suggestions (selected):</h1>
<div>
{% for word in suggestions %}
<strong class="query"><a href="/{{ lang}}/?q={{word}}">{{ word.strip() }}</a></strong>
{% endfor %}
</div>
<br>
<h1>Cross-reading suggestions (top 100 TF-IDF results):</h1>
<div>
{% for word in mappings %}
<strong class="query"> <a href="/{{ lang }}/?q={{ word }}">{{ word }}</a> </strong>
{% endfor %}
</div>
<br>
<p>Read more about the <a href="/{{ lang}}/mappings/{{ filenames[0] }}">TF-IDF algorithm and contrast mappings</a>.</p>
<br>
<br>
{% endblock %}