🌸 Prediction Result 🌸
{% if error %}
{{ error }}
Please try again with different values or contact support.
{% else %}
The predicted flower is: {{ prediction }}
{% if 'setosa' in prediction.lower() %}
Iris setosa is known for its:
- Small petal size
- Distinctive blue-green foliage
- Native to North America and eastern Asia
{% elif 'versicolor' in prediction.lower() %}
Iris versicolor is known for its:
- Medium-sized flowers
- Blue to purple coloration
- Native to eastern North America
{% elif 'virginica' in prediction.lower() %}
Iris virginica is known for its:
- Large petal size
- Violet blue to purple coloration
- Native to eastern North America
{% endif %}
{% endif %}
Make Another Prediction