deedrop1140 commited on
Commit
a19ef94
·
verified ·
1 Parent(s): c8cb2e2

Update templates/Optimization.html

Browse files
Files changed (1) hide show
  1. templates/Optimization.html +18 -12
templates/Optimization.html CHANGED
@@ -1,12 +1,18 @@
1
- {% extends "layout.html" %}
2
-
3
- {% block content %}
4
- <h1 class="text-4xl font-bold text-gray-800 mb-6">Optimization Method</h1>
5
- <p class="text-gray-600 text-lg mb-8">Optimization (Gradient Descent): Gradient descent is an optimization algorithm used to minimize the error (loss function) of a model during the training process. It is the underlying mechanism that powers the "gradient" aspect of gradient boosting, allowing the models to iteratively improve their performance.</p>
6
- <div class="flex flex-col gap-6">
7
- <div class="card p-6">
8
- <h2 class="text-2xl font-semibold text-gray-800 mb-4"></h2>
9
- <a href="/gradient-descent" class="algorithm-box">Gradient Descent</a>
10
- </div>
11
-
12
- {% endblock %}
 
 
 
 
 
 
 
1
+ {% extends "layout.html" %}
2
+
3
+ {% block content %}
4
+ <h1 class="text-4xl font-bold text-gray-800 mb-6">Optimization Method</h1>
5
+
6
+ <p class="text-gray-600 text-lg mb-8">
7
+ Optimization (Gradient Descent): Gradient descent is an optimization algorithm
8
+ used to minimize the error (loss function) of a model during the training process.
9
+ </p>
10
+
11
+ <div class="flex flex-col gap-6">
12
+ <div class="card p-6">
13
+ <h2 class="text-2xl font-semibold text-gray-800 mb-4"></h2>
14
+ <a href="/gradient-descent" class="algorithm-box">Gradient Descent</a>
15
+ </div>
16
+ </div> <!-- ✅ THIS WAS MISSING -->
17
+
18
+ {% endblock %}