{% extends 'core/wizards/_base.html' %} {% load i18n bootstrap %} {% block wizard_help %}

{% trans "The training data will be generated from the selected images and transcription." %}

{% trans "Empty lines will be ignored." %}

{% trans "Gathering data can take time and the model won't be available in the models tab until then." %}

{% endblock %} {% block wizard_fields %}
{% render_field process_form.transcription class="js-proc-settings" required="true" %}
{% trans "New model" %}
{% render_field process_form.new_model class="js-proc-settings" %}
{% trans "Or upload a model" %}
{% render_field process_form.upload_model class="js-proc-settings" accept=".mlmodel,.clstm,.pronn" %}
{% trans "Or select an existing one" %}
{% render_field process_form.train_model class="js-proc-settings" %}
{% endblock %} {% block wizard_submit %}{% trans "Train" %}{% endblock %}