{% extends "_base.html" %} {% block header_javascripts %} {% endblock %} {% block content %}

Description and Settings

The ID of the project: {{project_id}}
Was created: on {{metadata.creation_timestamp|timestamp_to_date}}, at {{metadata.creation_timestamp|timestamp_to_hour}}.
Is on iteration: {{status.iteration_id}}
List of texts:
List of constraints:

Iteration ({{status.iteration_id}}): Main steps

Initialize the modelization
After its creation or importation, a project need to initialize its modelization: (1) texts preprocessing, (2) texts vectorization, (3) constraints inference.
info
warning

Constraints sampling
This step determines the most interesting constraints to annotate based on the previous constrained clustering results.
info
warning

Constraints annotation and modelization
After sampling step, you can start your constraints annotation/reviewing.
Howeber, each modification makes the modelization obsolete: text deletion, constraints correction, modelization setting, ...
So, you need to regularly update the modelization: (1) texts preprocessing, (2) texts vectorization, (3) constraints inference.
info
warning

{% set constraints_to_annotate = (constraints.items() | selectattr("1.is_hidden", "equalto", false) | selectattr("1.to_annotate", "equalto", true) | list) %} {% set number_of_constraints_to_annotate = (constraints_to_annotate | length) %}
Constraints clustering
This step group texts by their similarities according to previous annotated constraints.
info
warning

Next iteration
When all these steps are done, this iteration is complete and you can go to the next one.
{% endblock %}