Machine Learning Plant Image Identification API

{% csrf_token %}
{% if form.image.errors %}
{{ form.image.errors }}
{% endif %}

{% if image.image_file %}

Uploaded Image

User uploaded image
{% endif %} {% if uploaded %}

Results

{% for prediction in predictions %} {% endfor %}
Species Genus Family Class Probility
{{ prediction.species }} {{ prediction.genus }} {{ prediction.family }} {{ prediction.class }} {{ prediction.probability }}
{% endif %}