{% extends "base.html" %} {% load static %} {% block head %} {% include 'head_content.html' with title="LyProX ยท Add Trained Lymph Model" %} {% endblock head %} {% block "js" %} {% endblock "js" %} {% block content %}

Add Trained Lymph Model

A trained lymph model consists of a git repository, that is also a DVC repository, that contains a file under models/samples.hdf5 which is the output of an inference round.

The model is identified by the git revision (tag/branch name or commit hash) of the repository, and the path to the params.yaml file in the repo that defines the necessary parameters.

An example for such a repository can be found in lynference.

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{{ form.git_repo_url }} {% if form.errors.git_repo_url %} {{ form.errors.git_repo_url }} {% endif %}
{{ form.revision }} {% if form.errors.revision %} {{ form.errors.revision }} {% endif %}
{{ form.params_path }} {% if form.errors.params_path %} {{ form.errors.params_path }} {% endif %}
{{ form.num_samples }}
{% endblock content %}