{% extends "base.html" %}
{% block navbar_links %}
{{ super() }}
Overview
Model
{% 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}}
General
Key |
Value |
{% for key, value in abc.json_parameters.items() %}
{{ key }}: |
{{ value }} |
{% endfor %}
Distance Function: {{ abc.distance_function["name"] }}
Key |
Value |
{% for key, value in abc.distance_function.items() %}
{{ key }}: |
{{ value }} |
{% endfor %}
Epsilon function: {{ abc.epsilon_function["name"] }}
Key |
Value |
{% for key, value in abc.epsilon_function.items() %}
{{ key }}: |
{{ value }} |
{% endfor %}
Population Strategy: {{ abc.population_strategy["name"] }}
Key |
Value |
{% for key, value in abc.population_strategy.items() %}
{{ key }}: |
{{ value }} |
{% endfor %}
Git
Commit: {{ abc.git_hash }}
{% endblock %}