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