Spaces:
Sleeping
Sleeping
File size: 4,902 Bytes
62d3e16 |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Insect Classifier</title>
<style>
/* Hapus kata 'padding' yang salah posisi */
body {
font-family: Arial, sans-serif;
background: #f0f8ff;
text-align: center;
margin: 0;
padding: 20px;
}
h1 {
color: #333;
}
h4 {
color: #666;
margin-top: 0;
}
.container {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 30px;
}
.card {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
width: 300px;
height: 450px; /* Diperhatikan apakah cukup tinggi jika deskripsi panjang */
display: flex;
flex-direction: column;
align-items: center;
}
input[type="file"] {
margin: 10px 0;
}
/* #modelSelect tidak digunakan di HTML ini, bisa dihapus jika tidak ada elemennya */
/*
#modelSelect {
margin: 10px 0;
padding: 5px;
font-size: 14px;
}
*/
#preview {
max-width: 90%;
max-height: 150px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
margin-bottom: 10px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
.loading {
display: none;
margin-top: 10px;
font-style: italic;
color: #555;
}
#result {
font-size: 18px;
font-weight: bold;
color: #333;
margin-top: 20px;
white-space: pre-line;
}
/* Menggabungkan style description dan pseudo-elementnya */
#description {
margin-top: 20px;
text-align: justify;
font-size: 14px;
color: #555;
border-top: 1px solid #ccc; /* Garis pemisah */
padding-top: 15px; /* Spasi setelah garis */
}
</style>
</head>
<body>
<h1>Insect Classification</h1>
<h4>Diah Retno Utami - 4TIB</h4>
<div class="container">
<div class="card">
<h2>Upload Image</h2>
<input type="file" id="upload" accept="image/*" onchange="previewImage()"/>
<img id="preview" src="" alt="Image Preview"/>
<button onclick="uploadImage()">Predict</button>
</div>
<div class="card">
<h2>Prediction Result</h2>
<div id="result">No prediction yet.</div>
<p class="loading" id="loading">Predicting...</p>
<div id="description"></div>
</div>
</div>
<script>
function previewImage() {
const file = document.getElementById('upload').files[0];
if (file) { // Tambahkan pengecekan file ada atau tidak
const reader = new FileReader();
reader.onload = function(e) {
document.getElementById('preview').src = e.target.result;
}
reader.readAsDataURL(file);
} else {
document.getElementById('preview').src = ""; // Reset gambar jika tidak ada file
}
}
async function uploadImage() {
const fileInput = document.getElementById('upload');
const file = fileInput.files[0];
if (!file) {
alert('Please select an image.');
return;
}
const formData = new FormData();
formData.append("file", file);
document.getElementById('loading').style.display = 'block';
document.getElementById('result').innerText = 'No prediction yet.';
document.getElementById('description').innerText = ''; // Reset deskripsi
try {
// !!! KRITIKAL: UBAH URL API INI UNTUK KOMPATIBILITAS DEPLOYMENT DAN LOKAL !!!
const response = await fetch('/predict/', { // <-- PERUBAHAN DI SINI
method: 'POST',
body: formData
});
if (!response.ok) { // Tambahkan pengecekan jika response tidak OK (misal 404, 500)
const errorText = await response.text();
throw new Error(`HTTP error! status: ${response.status}, message: ${errorText}`);
}
const result = await response.json();
document.getElementById('result').innerText =
`CNN Model:\n Predicted Class: ${result.cnn.predicted_class}\n Accuracy: ${(result.cnn.confidence * 100).toFixed(2)}%\n\n` +
`MobileNetV2 Model:\n Predicted Class: ${result.mobilenet.predicted_class}\n Accuracy: ${(result.mobilenet.confidence * 100).toFixed(2)}%`;
// !!! KRITIKAL: GUNAKAN overall_description DARI BACKEND !!!
document.getElementById('description').innerText = result.overall_description; // <-- PERUBAHAN DI SINI
} catch (error) {
console.error("Error during prediction:", error); // Log error lebih detail untuk debugging
document.getElementById('result').innerText = `Error during prediction: ${error.message || error}`;
document.getElementById('description').innerText = 'Failed to get description.';
} finally {
document.getElementById('loading').style.display = 'none';
}
}
</script>
</body>
</html> |