{% for c in column_names %} {% endfor %} {% for i in range(row_metadata|length) %} {% set r = row_metadata[i]["name"] %} {% set n_sa = row_metadata[i]["state_action_pairs"] %} {% set n_doc = row_metadata[i]["domain_of_controller"] %} {% for j in range(table[i]|length) %} {% set not_last_run = r not in last_run_datasets or column_names[j] not in last_run_classifiers %} {% set cell = table[i][j] %} {% set links = links_table[i][j] %} {% if cell is string %} {% else %} {% endif %} {% endfor %} {% endfor %}
#(s, a) refers to the number of state-action pairs (or state-input pairs). #doc refers to the size of the domain of controller.
{{ c }}
{{ r }}
#(s, a): {{ n_sa }}
#doc: {{ n_doc }}
{{ cell }} {% for k,v in cell['stats'].items() %} {{ k }}: {{ v }}
{% endfor %} {% if 'accuracy' in cell %} accuracy: {{ cell['accuracy'] }}
{% endif %} {% if 'time' in cell %} time: {{ cell['time'] }}
{% endif %} {% if 'dot_link' in links %} View dot file {% endif %} {% if 'c_link' in links %}
View C file {% endif %}