{% extends 'base.html' %} {% block title %}Manajemen Model {% endblock %} {% block content %}
Informasi dan metrik evaluasi model yang digunakan
Belum ada data model. Tambahkan informasi model dari hasil training Colab.
| Model | Accuracy | Precision | Recall | F1-Score | Unggul |
|---|---|---|---|---|---|
| {{ m.nama_model }} | {{ '%.2f'|format(m.accuracy) }}% | {{ '%.2f'|format(m.precision) }}% | {{ '%.2f'|format(m.recall) }}% | {{ '%.2f'|format(m.f1_score) }}% | {% if m.accuracy == models|map(attribute='accuracy')|max %} Terbaik {% endif %} |