{% extends "base.html" %} {% block title %}Findings{% endblock %} {% block content %}

Findings

Things learned that are not experiment results: a data defect, a model that changed underneath you, an incidental discovery. Recorded because they invalidate work, and an unrecorded one invalidates it silently.

{% for state in ['open', 'resolved'] %} {% set group = findings | selectattr('status', 'equalto', state) | list %} {% if group %}

{{ state | capitalize }} {{ group | length }}

{% endif %} {% endfor %} {% if not findings %}

Nothing recorded yet. This file appears when something is discovered, not before.

{% endif %} {% endblock %}