|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
|
<head>
|
|
|
<title>NeuroML</title>
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
|
|
|
|
*, *::before, *::after {
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
|
|
|
|
|
|
html, body {
|
|
|
margin: 0;
|
|
|
font-family: Arial;
|
|
|
height: 100%;
|
|
|
overflow-x: hidden;
|
|
|
}
|
|
|
|
|
|
.sidebar {
|
|
|
width: 200px;
|
|
|
background-color: #1e1e2f;
|
|
|
color: white;
|
|
|
padding: 20px;
|
|
|
height: 100vh;
|
|
|
position: fixed;
|
|
|
left: 0;
|
|
|
top: 0;
|
|
|
z-index: 1000;
|
|
|
overflow-y: auto;
|
|
|
}
|
|
|
|
|
|
.sidebar h2 {
|
|
|
margin-top: 0;
|
|
|
margin-bottom: 20px;
|
|
|
color: #7B68EE;
|
|
|
}
|
|
|
.sidebar a {
|
|
|
display: block;
|
|
|
color: white;
|
|
|
padding: 10px 0;
|
|
|
text-decoration: none;
|
|
|
border-radius: 5px;
|
|
|
padding-left: 10px;
|
|
|
transition: background-color 0.3s ease;
|
|
|
}
|
|
|
.sidebar a:hover {
|
|
|
background-color: #5757a3;
|
|
|
}
|
|
|
.main {
|
|
|
|
|
|
|
|
|
margin-left: 220px;
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
width: calc(100% - 220px);
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
<div class="sidebar">
|
|
|
<h2>NeuroML</h2>
|
|
|
<a href="/">๐ Home</a>
|
|
|
<a href="/supervised">๐ Supervised</a>
|
|
|
<a href="/polynomial" class="block px-6 py-2 hover:bg-blue-100">๐ธ Polynomial Regression</a>
|
|
|
<a href="/random_forest" class="hover:text-green-700">๐ฒ Random Forest Regressor</a>
|
|
|
<a href="/lasso" class="hover:text-blue-600">๐ชข Lasso Regression</a>
|
|
|
<a href="/ridge" class="text-blue-600 font-medium hover:underline">
|
|
|
๐งฎ Ridge Regression
|
|
|
</a>
|
|
|
<a href="/svr" class="text-blue-600 font-medium hover:underline">
|
|
|
โ๏ธ Support Vector Regression
|
|
|
</a>
|
|
|
<a href="/logistic" class="text-yellow-600 font-medium hover:underline">
|
|
|
๐จ Logistic Regression
|
|
|
</a>
|
|
|
|
|
|
<a href="/knn" class="text-indigo-600 font-medium hover:underline">
|
|
|
๐ข KNN Digit Classifier
|
|
|
</a>
|
|
|
<a href="/rfc" class="block px-4 py-2 text-sm font-medium text-green-700 hover:bg-green-100 rounded">
|
|
|
๐ฒ Random Forest Classifier
|
|
|
</a>
|
|
|
|
|
|
<a href="/svm" class="block px-4 py-2 text-sm font-medium text-purple-700 hover:bg-purple-100 rounded">
|
|
|
โ๏ธ Support Vector Machine (SVM)
|
|
|
</a>
|
|
|
|
|
|
<a href="/decision_tree" class="block px-4 py-2 text-sm font-medium text-purple-700 hover:bg-purple-100 rounded">
|
|
|
Decision Tree
|
|
|
</a>
|
|
|
|
|
|
<a href="/naive_bayes" class="block px-4 py-2 text-sm font-medium text-purple-700 hover:bg-purple-100 rounded">
|
|
|
Naive Bayes
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
|
|
<a href="/kmeans-clustering">๐ฅ Kmeans-Clustering</a>
|
|
|
<a href="/DBscan" class="block px-4 py-2 text-sm font-medium text-purple-700 hover:bg-purple-100 rounded">
|
|
|
DBSCAN Clustering
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
<div class="main">
|
|
|
{% block content %}{% endblock %}
|
|
|
</div>
|
|
|
</body>
|
|
|
</html>
|
|
|
|