{% extends 'base.html' %} {% block title %}Prediksi Massal — Admin{% endblock %} {% block content %}
Prediksi Massal (CSV/Excel)
File wajib memiliki kolom text yang berisi komentar YouTube terkait MBG.
Hasil Prediksi Massal
{% if bulk_history and bulk_history|length > 0 %} {{ bulk_history|length }} file hasil tersedia {% else %} Belum ada hasil {% endif %}
{% if bulk_history and bulk_history|length > 0 %}
Daftar berikut berisi file hasil prediksi massal yang pernah diproses admin. File dapat diunduh kembali selama belum dihapus.
{% for item in bulk_history %} {% endfor %}
# Nama File Model Total Positif Negatif Netral Waktu Aksi
{{ loop.index }}
{{ item.original_filename or item.hasil_file }}
File hasil: {{ item.hasil_file }}
Data global untuk dashboard, riwayat, dan visualisasi user.
{{ item.model }} {{ item.total }} {{ item.positif }} {{ item.negatif }} {{ item.netral }} {{ item.waktu }}
Tombol hapus hanya menghapus file export dari daftar ini. Data prediksi yang sudah masuk ke riwayat/database tetap tersimpan.
{% else %}
Belum ada file hasil prediksi massal.
Upload file CSV/Excel dengan kolom text, pilih model, lalu klik Proses Prediksi. Setelah proses selesai, hasilnya akan muncul pada tabel riwayat di panel ini dan dapat diunduh kembali.
{% endif %}
{% endblock %}