{% extends "_base.html" %} {% block header_javascripts %} {% endblock %} {% block content %}
{% set is_in_current_iteration = ( iteration_id is none or iteration_id == status.iteration_id ) %}

{% if is_in_current_iteration %} Current iteration ({{status.iteration_id}}): Settings synthesis {% else %} Previous iteration ({{iteration_id}}): Settings synthesis {% endif %}

{% if "preprocessing" in settings.keys() %} {% set disable_preprocessing = ( status.state not in [ "INITIALIZATION_WITHOUT_MODELIZATION", "ANNOTATION_WITH_UPTODATE_MODELIZATION", "ANNOTATION_WITH_OUTDATED_MODELIZATION_WITHOUT_CONFLICTS", "ANNOTATION_WITH_OUTDATED_MODELIZATION_WITH_CONFLICTS", ] ) %}

Settings of preprocessing step (during modelization update)

Parameter Value
Apply stopwords deletion info
Apply dependency parsing filter info
Apply lemmatization info
Spacy language model to use info
{% if not disable_preprocessing %}
{% endif %}
{% endif %} {% if "vectorization" in settings.keys() %} {% set disable_vectorization = ( status.state not in [ "INITIALIZATION_WITHOUT_MODELIZATION", "ANNOTATION_WITH_UPTODATE_MODELIZATION", "ANNOTATION_WITH_OUTDATED_MODELIZATION_WITHOUT_CONFLICTS", "ANNOTATION_WITH_OUTDATED_MODELIZATION_WITH_CONFLICTS", ] ) %}

Settings of vectorization step (during modelization update)

Parameter Value
Type of vectorizer info
Spacy language model to use info
Random seed info
{% if not disable_vectorization %}
{% endif %}
{% endif %} {% if "sampling" in settings.keys() %} {% set disable_sampling = ( status.state not in [ "SAMPLING_TODO", ] ) %}

Settings of sampling step

Parameter Value
Number of pairs of questions to select info
Constraints sampling algorithm info
[Custom] restriction on clusters info
[Custom] restriction on distance info
[Custom] without inferred constraints info
Random seed info
{% if not disable_sampling %}
{% endif %}
{% endif %} {% if "clustering" in settings.keys() %} {% set disable_clustering = ( status.state not in [ "INITIALIZATION_WITHOUT_MODELIZATION", "INITIALIZATION_WITH_PENDING_MODELIZATION", "INITIALIZATION_WITH_WORKING_MODELIZATION", "SAMPLING_TODO", "SAMPLING_PENDING", "SAMPLING_WORKING", "ANNOTATION_WITH_UPTODATE_MODELIZATION", "ANNOTATION_WITH_OUTDATED_MODELIZATION_WITHOUT_CONFLICTS", "ANNOTATION_WITH_PENDING_MODELIZATION_WITHOUT_CONFLICTS", "ANNOTATION_WITH_WORKING_MODELIZATION_WITHOUT_CONFLICTS", "ANNOTATION_WITH_OUTDATED_MODELIZATION_WITH_CONFLICTS", "ANNOTATION_WITH_PENDING_MODELIZATION_WITH_CONFLICTS", "ANNOTATION_WITH_WORKING_MODELIZATION_WITH_CONFLICTS", "CLUSTERING_TODO", ] ) %}

Settings of clustering step

Parameter Value
Constrained clustering algorithm info
Number of clusters to search info
[K-Means] Model info
[K-Means] Number maximum of iterations info
[K-Means] Tolerance info
[Hierarchical] Linkage info
[Spectral] Model info
[Spectral] Number of components info
Random seed info
{% if not disable_clustering %}
{% endif %}
{% endif %}
{% set navigation_previous = none if (iteration_id == 0) else (iteration_id - 1) %} {% set navigation_next = none if (iteration_id == status["iteration_id"]) else (iteration_id + 1) %}
{% endblock %}