{% extends "base/base.html" %} {% load static %} {% block title %} ID Predictions {% endblock title %} {% block page_heading %} ID Predictions {% endblock page_heading %} {% block main_content %}
{% if id_reader_task_status.status == "Complete" %}

Re-run ID auto-reader tool

{{ id_reader_task_status.message }} {% elif id_reader_task_status.status == "Error" %}

Re-run ID auto-reader tool

{{ id_reader_task_status.message }} {% elif id_reader_task_status.status == "To Do" %}

Run ID auto-reader tool

Reader not yet run. {% else %}

{{ id_reader_task_status.message }} {% endif %}
Auto-read paper IDs

Note that this table only shows papers which are prenamed or have predicted IDs

{% for pn, dat in predictions.items %} {% if 'identified' in dat %} {% else %} {% endif %} {% if 'prename' in dat %} {% else %} {% endif %} {% if 'MLLAP' in dat %} {% else %} {% endif %} {% if 'MLGreedy' in dat %} {% else %} {% endif %} {% endfor %}
Paper Identified Prenamed ID Predicted ID (LAP) Certainty Predicted ID (Greedy) Certainty
{{ pn }} {% if dat.image_pk %} {% endif %} {{ dat.identified }}{{ dat.status }}{{ dat.prename.0 }}{{ dat.MLLAP.0 }} {{ dat.MLLAP.1 }} {{ dat.MLGreedy.0 }} {{ dat.MLGreedy.1 }}
{% endblock main_content %}