-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (77 loc) · 3.8 KB
/
index.html
File metadata and controls
85 lines (77 loc) · 3.8 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Deep Learning Project · Documents</title>
<style>
:root { --accent:#0b5fff; }
body { font-family: system-ui, Arial, sans-serif; max-width: 980px; margin: 24px auto; padding: 0 16px; line-height: 1.6; color:#222; }
h1 { text-align:center; margin-bottom: 8px; }
h2 { margin-top: 28px; border-bottom: 1px solid #eee; padding-bottom: 6px; }
h3 { margin: 20px 0 6px; }
.item { padding: 10px 12px; border:1px solid #eee; border-radius:10px; margin: 8px 0; background:#fafafa; }
.links { margin-top: 6px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.muted { color:#666; font-size: 0.95em; }
.row { display:flex; gap:12px; flex-wrap:wrap; }
.pill { padding:3px 10px; border:1px solid #e6e6e6; border-radius:999px; background:#fff; }
</style>
</head>
<body>
<h1>Deep Learning Project Documents</h1>
<!-- ========================= -->
<h2>1) Other ML Models <span class="muted">(OtherMLModels/)</span></h2>
<div class="item">
<h3>• Support Vector Machines <span class="muted">(SVMs)</span></h3>
<div class="row links">
<a class="pill" href="viewer.html?file=OtherMLModels/SVMs/SVMs.pdf">Open in viewer</a>
<a class="pill" href="OtherMLModels/SVMs/SVMs.pdf">Direct PDF</a>
<span class="pill muted">Path: OtherMLModels/SVMs/</span>
</div>
</div>
<div class="item">
<h3>• Naive Bayes <span class="muted">(Breast Cancer Wisconsin)</span></h3>
<div class="row links">
<a class="pill" href="viewer.html?file=OtherMLModels/Naive-bayes/NaiveBayes.pdf">Open in viewer</a>
<a class="pill" href="OtherMLModels/Naive-bayes/NaiveBayes.pdf">Direct PDF</a>
<a class="pill" href="OtherMLModels/Naive-bayes/NaiveBayes.ipynb">Code (NaiveBayes.ipynb)</a>
<span class="pill muted">Path: OtherMLModels/Naive-bayes/</span>
</div>
</div>
<div class="item">
<h3>• Multi‑Layer Perceptron (MLP) <span class="muted">(CIFAR‑10/100)</span></h3>
<div class="row links">
<a class="pill" href="viewer.html?file=OtherMLModels/MLPs/MLP.pdf">Open in viewer</a>
<a class="pill" href="OtherMLModels/MLPs/MLP.pdf">Direct PDF</a>
<span class="pill muted">Path: OtherMLModels/MLPs/</span>
</div>
</div>
<!-- ========================= -->
<h2>2) Convolutional Neural Networks <span class="muted">(CNNs/)</span></h2>
<div class="item">
<h3>• Image Captioning with CNN + RNN</h3>
<div class="row links">
<a class="pill" href="viewer.html?file=CNNs/image_captioning_with_CNN/Image_captioning_with_RNNs.pdf">Open in viewer</a>
<a class="pill" href="CNNs/image_captioning_with_CNN/Image_captioning_with_RNNs.pdf">Direct PDF</a>
<a class="pill" href="CNNs/image_captioning_with_CNN/image_caption.ipynb">Code (image_caption.ipynb)</a>
<span class="pill muted">Path: CNNs/image_captioning_with_CNN/</span>
</div>
</div>
<div class="item">
<h3>• Comprehensive Comparison of CNNs</h3>
<div class="row links">
<a class="pill" href="viewer.html?file=CNNs/Comprehensive_comparision_CNNs/Final-project-report.pdf">Open in viewer</a>
<a class="pill" href="CNNs/Comprehensive_comparision_CNNs/Final-project-report.pdf">Direct PDF</a>
<a class="pill" href="CNNs/Comprehensive_comparision_CNNs/code/">Code folder</a>
<a class="pill" href="CNNs/Comprehensive_comparision_CNNs/Writing/">Writing folder</a>
<span class="pill muted">Path: CNNs/Comprehensive_comparision_CNNs/</span>
</div>
</div>
<!-- Optional footer -->
<p class="muted" style="margin-top:28px;text-align:center;">
Tip: If a PDF doesn’t open, double‑check the exact path & filename case on GitHub (case‑sensitive).
</p>
</body>
</html>