{% extends "base.html" %} {% block title %}Tropical Cyclone Intensity{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Tropical Cyclone Intensity Estimation


{% if errors|length > 0 %}
{% endif %}



Select a model



{% if "classified" in results.keys() %}
{% if results.filename %} {{results.filename}} {% endif %}

Predictions

{% for class, percentage in results.predictions[:3] %} {{class.upper()}} : {{percentage}}%

{% endfor %}


{% endif %}
{% endblock %}