| <!DOCTYPE html>
|
| <html lang="en">
|
| <head>
|
| <meta charset="UTF-8">
|
| <title>Emotion Recognition Model Reports</title>
|
| <style>
|
| body {
|
| font-family: Arial, sans-serif;
|
| background-color: #f4f4f4;
|
| margin: 0;
|
| padding: 2rem;
|
| }
|
| h1 {
|
| text-align: center;
|
| color: #333;
|
| }
|
| h2 {
|
| margin-top: 2rem;
|
| color: #2c3e50;
|
| }
|
| pre {
|
| background-color: #fff;
|
| border-left: 5px solid #007BFF;
|
| padding: 1rem;
|
| overflow-x: auto;
|
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
| white-space: pre-wrap;
|
| }
|
| </style>
|
| </head>
|
| <body>
|
| <h1>Classification Reports for Emotion Recognition Models</h1>
|
|
|
| <h2>Support Vector Machine (SVM)</h2>
|
| <pre>{{ svm_report }}</pre>
|
|
|
| <h2>Random Forest</h2>
|
| <pre>{{ rf_report }}</pre>
|
|
|
| <h2>k-Nearest Neighbors (k-NN)</h2>
|
| <pre>{{ knn_report }}</pre>
|
|
|
| <h2>Logistic Regression</h2>
|
| <pre>{{ lr_report }}</pre>
|
| </body>
|
| </html>
|
|
|