{% extends "base.html" %} {% block toc %} {% endblock %} {% block content %}

Visiomode Session Report

{{ session_id }}

Session metadata

Subject ID: {{ subject_id or "Unknown" }}
Experiment ID: {{ experiment_id or "Unknown" }}
Session duration: {{ duration or "Unknown" }} mins
Session date: {{ session_date or "Unknown" }}
Protocol: {{ protocol or "Unknown" }}
Number of trials: {{ trials_num or "Unknown" }}

Protocol spec

Inter-trial Interval: {{ iti or "Unknown" }} ms
Correction trials: {{ corrections_enabled }}
Notes:
{{ notes }}
Stimulus interval: {{ stimulus_duration or "Unknown" }} ms
Stimuli:
{% for key, value in stimuli.items() %} {% endfor %}
  {{ key }}: {{ value }}

Session metrics

{% if corrections_enabled %}

Random presentations only

{% endif %}
Cue response breakdown
{{ fig_success_pie | safe }}
Cued:uncued response breakdown
{{ fig_cued_pie | safe }}
Median reaction time
{{ fig_rt_median | safe }}
{% if corrections_enabled %}

All presentations (including correction trials)

Cue response breakdown (all trials)
{{ fig_success_pie_wc | safe }}
Cued:uncued response breakdown (all trials)
{{ fig_cued_pie_wc | safe }}
Median reaction time (all trials)
{{ fig_rt_median_wc | safe }}

Correction trial metrics

Presentation breakdown
{{ fig_presentation_breakdown | safe }}
Presentation ratio
{{ fig_presentation_ratio | safe }}
Perseveration index
{{ fig_perseveration_index | safe }}
{% endif %}

{% if protocol != "targetonly"%}

SDT metrics

ROC curve
{{ fig_roc | safe }}
Discriminability index (d')
{{ fig_d_prime | safe }}
Decision criterion
{{ fig_decision_criterion | safe }}
Response type breakdown
{{ fig_response_sdt | safe }}
{% if corrections_enabled %}
Response type breakdown (all trials)
{{ fig_response_sdt_wc | safe }}
{% endif %}
{% endif %}

Trial timeseries

Response timeseries
{{ fig_response_timeseries | safe }}
{% if protocol != "targetonly"%}
SDT timeseries
{{ fig_sdt_timeseries | safe }}
{% endif %}
{% endblock %}