2019-02-27 10:01:48 +01:00
|
|
|
{% extends "en/base.html" %}
|
|
|
|
|
|
|
|
{% block results %}
|
2019-03-07 23:37:37 +01:00
|
|
|
<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>
|
2019-02-27 10:01:48 +01:00
|
|
|
<!-- <p>Psst, this is a cross-reading tool that operates on two axes ...</p> -->
|
|
|
|
<!-- <p>Tip: Try to search for a single word.</p> -->
|
2019-03-07 23:37:37 +01:00
|
|
|
<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>
|
2019-02-27 10:01:48 +01:00
|
|
|
{% 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>
|
2019-03-07 23:37:37 +01:00
|
|
|
<h1>Cross-reading suggestions (top 100 TF-IDF results):</h1>
|
2019-02-27 10:01:48 +01:00
|
|
|
<div>
|
2019-03-07 23:37:37 +01:00
|
|
|
{% for word in mappings %}
|
|
|
|
<strong class="query"> <a href="/{{ lang }}/?q={{ word }}">{{ word }}</a> </strong>
|
2019-02-27 10:01:48 +01:00
|
|
|
{% 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 %}
|