{% extends "base.html" %} {% block navbar_links %} {{ super() }}
  • Overview
  • {% endblock %} {% block scripts %} {{ super()}} {{ BOKEH.render()|safe }} {{ plot.script|safe }} {% endblock %} {% block title %}ABC {{ abc_id }}{% endblock %} {% block content %}

    ABC {{ abc_id }} details

    Graphs

    {{ plot.div|safe}}

    Info

    General

    {% for key, value in abc.json_parameters.items() %} {% endfor %}
    Key Value
    {{ key }}: {{ value }}

    Distance Function: {{ abc.distance_function["name"] }}

    {% for key, value in abc.distance_function.items() %} {% endfor %}
    Key Value
    {{ key }}: {{ value }}

    Epsilon function: {{ abc.epsilon_function["name"] }}

    {% for key, value in abc.epsilon_function.items() %} {% endfor %}
    Key Value
    {{ key }}: {{ value }}

    Population Strategy: {{ abc.population_strategy["name"] }}

    {% for key, value in abc.population_strategy.items() %} {% endfor %}
    Key Value
    {{ key }}: {{ value }}

    Git

    Commit: {{ abc.git_hash }}
    {% endblock %}