{% extends "base.html.j2" %} {% import "materialize/wtf.html.j2" as wtf %} {% from "contributions/_breadcrumbs.html.j2" import breadcrumbs with context %} {% block page_content %}

{{ title }}

{# Tesseract OCR Models #}

My Tesseract OCR Pipeline Models

Here you can see and edit the models that you have created. You can also create new models.

{% if tesseract_ocr_user_models|length > 0 %} {% for m in tesseract_ocr_user_models %} {% if m.description == '' %} {% else %} {% endif %} {% endfor %} {% else %} {% endif %}
Title Description Biblio
{{ m.title }}Description is not available.{{ m.description }}{{ m.publisher }} ({{ m.publishing_year }}), {{ m.title }} {{ m.version}}, {{ m.publishing_url }} delete edit
No models available.
{# spaCy NLP Models #}

My spaCy NLP Pipeline Models

Here you can see and edit the models that you have created. You can also create new models.

{% if spacy_nlp_user_models|length > 0 %} {% for m in spacy_nlp_user_models %} {% if m.description == '' %} {% else %} {% endif %} {% endfor %} {% else %} {% endif %}
Title Description Biblio
{{ m.title }}Description is not available.{{ m.description }}{{ m.publisher }} ({{ m.publishing_year }}), {{ m.title }} {{ m.version}}, {{ m.publishing_url }} delete edit
No models available.
{% endblock page_content %} {% block scripts %} {{ super() }} {% endblock scripts %}