Spaces:
No application file
No application file
File size: 630 Bytes
efb524b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
{% extends 'base_a.html' %}
{% load static %}
{% block content %}
<table id="tab">
<tr>
<td>
<center>
<h2>Accuracy of Algorithms</h2>
<img src="{% static 'images/acc.jpg' %}" width="550" height="450" >
<td>
<center>
<h2>Precision of Algorithms
</h2>
<img src="{% static 'images/prec.jpg' %}" width="550" height="450">
<tr>
<td>
<center>
<h2>Recall of Algorithms
</h2>
<img src="{% static 'images/recall.jpg' %}" width="550" height="450">
<td><center>
<h2>F1-score of Algorithms
</h2>
<img src="{% static 'images/f1sc.jpg' %}" width="550" height="450">
</table>
{% endblock %} |