Results
< Back
{% for base64data, tags in predictions %}
{% for tag, score in tags.items() %}
?
{{ tag | replace("_", " ") }}
{{ "{:.0f}%".format(100 * score) }}
{% endfor %}
{{ " ".join(tags.keys()) }}
{% endfor %}