carrotcake3 commited on
Commit
f895af1
·
verified ·
1 Parent(s): 0a2f7c2

Update templates/dataset.html

Browse files
Files changed (1) hide show
  1. templates/dataset.html +29 -29
templates/dataset.html CHANGED
@@ -1,29 +1,29 @@
1
- {% extends "base.html" %}
2
- {% block content %}
3
-
4
- <div class="container py-4">
5
-
6
- <h2 class="fw-bold mb-4">Datasets Used for Model Training & Evaluation</h2>
7
- <p class="text-muted">Download the exact datasets used to train and test the cetane number prediction model.</p>
8
-
9
- <!-- PURE DATASET -->
10
- <div class="card card-metric p-4 mb-4">
11
- <h4 class="fw-bold">Pure Fuel Dataset</h4>
12
- <p class="text-muted">Contains all pure fuel molecules used for the pure fuel model.</p>
13
- <a href="/download/pure" class="btn btn-primary mt-2">
14
- ⬇️ Download Pure Fuel Dataset (.xlsx)
15
- </a>
16
- </div>
17
-
18
- <!-- MIXTURE DATASET -->
19
- <div class="card card-metric p-4 mb-4">
20
- <h4 class="fw-bold">Mixture Fuel Dataset</h4>
21
- <p class="text-muted">Contains multi-component mixtures fuels used for the mixture fuel model.</p>
22
- <a href="/download/mixture" class="btn btn-primary mt-2">
23
- ⬇️ Download Mixture Fuel Dataset (.xlsx)
24
- </a>
25
- </div>
26
-
27
- </div>
28
-
29
- {% endblock %}
 
1
+ {% extends "base.html" %}
2
+ {% block content %}
3
+
4
+ <div class="container py-4">
5
+
6
+ <h2 class="fw-bold mb-4">Datasets Used for Model Training & Evaluation</h2>
7
+ <p class="text-muted">Download the exact datasets used to train and test the prediction model.</p>
8
+
9
+ <!-- PURE DATASET -->
10
+ <div class="card card-metric p-4 mb-4">
11
+ <h4 class="fw-bold">Pure Fuel Dataset</h4>
12
+ <p class="text-muted">Contains all pure fuel molecules used for the pure fuel model.</p>
13
+ <a href="/download/pure" class="btn btn-primary mt-2">
14
+ ⬇️ Download Pure Fuel Dataset (.xlsx)
15
+ </a>
16
+ </div>
17
+
18
+ <!-- MIXTURE DATASET -->
19
+ <div class="card card-metric p-4 mb-4">
20
+ <h4 class="fw-bold">Mixture Fuel Dataset</h4>
21
+ <p class="text-muted">Contains multi-component mixtures fuels used for the mixture fuel model.</p>
22
+ <a href="/download/mixture" class="btn btn-primary mt-2">
23
+ ⬇️ Download Mixture Fuel Dataset (.xlsx)
24
+ </a>
25
+ </div>
26
+
27
+ </div>
28
+
29
+ {% endblock %}