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
2.0 KiB

{% extends "en/base.html" %}
{% block results %}
<blockquote>
This tool allows for cross-readings through a collection of <em>cyber/technofeminist manifestos</em><br>
and the <em>TF-IDF algorithm</em>, an algorithm that has been very important for online search engines.
</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 explore these manifests by typing a keyword in the search bar or by clicking on the list of suggested keywords below. The results display sentences from the different manifestos in which the search word appears. The colour changes correspond to the different manifestos from which they are derived. You can print extracts by clicking on the printer icon.
</li>
<li>
You can simply browse through this list of manifests and read them in their entirety and in their original web environment (right-hand column).
</li>
<li>
If you click on the small icon next to the manifest title, you can read the manifest through the prism of the TD-IDF algorithm. This algorithm identifies the most important words within a document. It is crucial for a large number of online search engines. It was developed in part by British computer scientist Karen Spärck Jones. For more information on how it works, see <a href="/{{ lang }}/about">about</a>.
</li>
</ol>
</div>
{% endblock %}
{% block suggestions %}
<h1>Cross-reading suggestions (manual selection):</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 (algorithmic selection):</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 %}