-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.89 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Optimization -->
<title>
ML classification performance metrics calculator and visualizer
| accuracy, F1 score, precision, recall, confusion matrix
</title>
<meta name="description" content="Visualize and calculate machine learning classifier performance metrics including PCA, accuracy, F1 score, precision, recall, and confusion matrix. Perfect for data scientists and ML enthusiasts." />
<meta name="keywords" content="machine learning, classifier, PCA, accuracy, F1 score, precision, recall, confusion matrix, performance metrics, ML visualization, data science" />
<meta name="author" content="Hasan Ahamed" />
<!-- Social Media Meta Tags (Open Graph for Facebook, LinkedIn, etc.) -->
<meta property="og:title" content="ML Classifier Performance Analyzer" />
<meta property="og:description" content="Visualize and calculate performance metrics for machine learning classifiers such as PCA, accuracy, F1 score, precision, recall, and confusion matrix." />
<meta property="og:url" content="https://ml-calculator.vercel.app" />
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="ML Classifier Performance Analyzer" />
<meta name="twitter:description" content="Calculate and visualize PCA, accuracy, F1 score, precision, recall, and confusion matrix for machine learning models." />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<!-- Canonical URL -->
<link rel="canonical" href="https://ml-calculator.vercel.app" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>