{% for c in column_names %} | {{ c }} | {% endfor %}|
---|---|---|
{{ r }}
#(s,a): {{ n_sa }} #doc: {{ n_doc }} |
{% 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 %}
{{ cell }} | {% else %}
{% 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 %} DOT / {% endif %} {% if 'c_link' in links %} C {% endif %} |
{% endif %}
{% endfor %}