{% extends "base.html" %} {% block title %}Fenn Dashboard{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
Browse and analyse your ML experiment logs.
| Project | Session ID | Started | Duration | Status | Entries | Warnings | Exceptions |
|---|---|---|---|---|---|---|---|
| {{ s.project }} | {{ s.session_id | short_id }}… | {{ s.started }} | {{ s.duration_s | duration }} | {% if s.status == 'crashed' %} crashed {% elif s.status == 'failed' %} failed {% elif s.status == 'running' %} running {% else %} completed {% endif %} | {{ s.entry_count }} | {{ s.warning_count if s.warning_count else '—' }} | {{ s.exception_count if s.exception_count else '—' }} |
logger.fnxml: true in your fenn.yaml and run an
experiment. Fenn will scan ./logger/, ~/logger/, and
any paths in the FENN_LOG_DIRS environment variable.