% include(header_path)

Loss & Accuracy

% if 'sessions_loss_state' in locals(): % if sessions_loss_state == 'positive':
% elif sessions_loss_state == 'negative':
% end % else:
% end

Loss % if 'sessions_loss_state' in locals(): % if sessions_loss_state == 'positive': arrow_drop_down % elif sessions_loss_state == 'negative': arrow_drop_up % end % end

last {{ number_graph_sessions_loss }} sessions

% if 'sessions_acc_state' in locals(): % if sessions_acc_state == 'positive':
% elif sessions_acc_state == 'negative':
% end % else:
% end

Accuracy % if 'sessions_acc_state' in locals(): % if sessions_acc_state == 'positive': arrow_drop_up % elif sessions_acc_state == 'negative': arrow_drop_down % end % end

last {{ number_graph_sessions_acc }} sessions

Sessions

% if number_running_sessions > 0:
% else:
check
% end

Running Sessions

{{ number_running_sessions }}


favorite

Favorite Sessions

{{ number_favorite_sessions }}


% if number_list_last_sessions > 0:
view_list
% if number_list_last_sessions < 2:

Last Session

% else:

Last {{ number_list_last_sessions }} Sessions

% end
% for session in list_last_sessions: % id, index, start_date = session['id'], session['index'], session['start_date'] % is_active = session['is_active'] % is_favorite, id_project = session['is_favorite'], session['id_project'] % name = session['name'] % end
Status Start date Duration Loss Accuracy
{{ index }} % if is_active: % else: check % end {{ start_date }} % if 'duration' in session.keys(): % duration = session['duration'] {{ duration }} % else: - % end % if 'loss' in session.keys(): % loss = session['loss'] {{ loss }} % else: - % end % if 'acc' in session.keys(): % acc = session['acc'] {{ acc }} % else: - % end
% end
% include(footer_path)