<% include!("header.html"); %>

model_trainingModels

<% for project in &projects { %>

<%= project.name %>

  1. Algorithm <%- project.key_metric_display_name().unwrap() %>
  2. <% for model in &models[&project.id] { %>
  3. <% if model.search.is_some() { %> <% if model.search.as_ref().unwrap().as_str() == "grid" { %> grid_on <% } %> <% if model.search.as_ref().unwrap().as_str() == "random" { %> shuffle <% } %> <% } else { %> check_circle <% } %> <%= model.algorithm %> <%= format!("{:.4}", model.key_metric(&project).unwrap()) %>
  4. <% } %>
<% } %> <% include!("footer.html"); %>