{% extends "bootstrap/base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Gilda grounding service

The Gilda service (v{{ version }}) can be used to identify identifiers for entity names.

There are two usage modes: grounding (also called named entity normalization or linking) and annotation (also called named entity recognition).

  • In the Grounding mode, the input text is assumed to correspond to a single named entity.
  • In the Annotation mode, a longer span of text is used as input which may contain any number of named entities in it.

For programmatic access, see the API documentation and the user guide for more information.

{% block gcontent %}{% endblock %}

Gilda is developed by the Gyori Lab for Computational Biomedicine at Northeastern University. Its development is funded by DARPA grants HR00112220036. Point of contact: Benjamin M. Gyori.

{% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% macro render_species_modal() %} {% endmacro %} {% macro render_form(form) %}

Gilda grounding input

{{ wtf.form_field(form.text) }} {{ wtf.form_field(form.context) }} {{ wtf.form_field(form.organisms, class_="form-control") }} {{ wtf.form_field(form.submit, class="btn btn-primary") }}
{{ render_species_modal() }}
{% endmacro %} {% macro render_ner_form(form) %}

Gilda annotation input

{{ wtf.form_field(form.text) }} {{ wtf.form_field(form.organisms, class_="form-control") }} {{ wtf.form_field(form.submit, class="btn btn-primary") }}
{{ render_species_modal() }} {% endmacro %}