{% extends 'base.html' %} {% load sekizai_tags %} {% load customtags %} {% load static %} {% block head %} {% include 'head_content.html' with title="LyProX ยท Compute Personalized Risk" %} {% endblock head %} {% block "css" %} {% endblock "css" %} {% block "js" %} {% endblock "js" %} {% block content %} {% csrf_token %}

Tumor

{% include 'dataexplorer/help/tooltip.html' with side="right" position="bottom" html='riskpredictor/help/tumor.html' %}
{{ form.t_stage }}
{% if inference_result.is_midline %}
{{ form.midline_extension }} {% if form.errors.midline_extension %} {{ form.errors.midline_extension }} {% endif %}
{% endif %}

Diagnostic Modality

{% include 'dataexplorer/help/tooltip.html' with side="right" position="bottom" html='riskpredictor/help/modality.html' %}
{{ form.specificity }}
0.8
{{ form.sensitivity }}
0.8
{% if inference_result.is_bilateral %}

contralateral

{% include 'dataexplorer/help/tooltip.html' with side="right" position="bottom" html='riskpredictor/help/risks.html' %}
{% for lnl in inference_result.lnls %} {% with "contra_"|addstr:lnl as lnl_key %} {% include 'dataexplorer/barplot.html' with lnl="II "|addstr:"contralateral" stats=risks lnl_key=lnl_key show_percent=True hide_tooltip=True %} {% endwith %} {% endfor %}
LNL select marginalized risk (involved, error, healthy)
{{ lnl }} {{ form|get:lnl_key }}
{% endif %}

ipsilateral

{% include 'dataexplorer/help/tooltip.html' with side="left" position="bottom" html='riskpredictor/help/risks.html' %}
{% for lnl in inference_result.lnls %} {% with "ipsi_"|addstr:lnl as lnl_key %} {% include 'dataexplorer/barplot.html' with lnl="II "|addstr:"ipsilateral" stats=risks lnl_key=lnl_key show_percent=True hide_tooltip=True %} {% endwith %} {% endfor %}
LNL select marginalized risk (involved, error, healthy)
{{ lnl }} {{ form|get:lnl_key }}

Release Description

{% render_md inference_result.description %}

Model Parameters

General Settings

Graph Structure

{{ form.is_submitted }}
{% endblock content %}