{% extends "base.html" %} {% block gcontent %} {% if form is defined %} {{ render_ner_form(form) }} {% endif %}

NER Results

{{ text }}
{% for text, match, start, end in annotations %} {% set match_curie = match.term.get_curie() %} {% endfor %}
Span Grounding Name Score Additional Groundings
{{start}}-{{end}} {{ match_curie }} {{ match['term']['entry_name'] }} {{ match['score'] | round(4) }} {% for xref_curie, xref_url in match.get_grounding_dict().items() %} {% if xref_curie != match_curie %} {{ xref_curie }} {% endif %} {% endfor %}
{% endblock %}