-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.qmd
More file actions
executable file
·106 lines (60 loc) · 1.66 KB
/
template.qmd
File metadata and controls
executable file
·106 lines (60 loc) · 1.66 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
---
title: |-
Data Science for Electron Microscopy<br>
Lecture 4: CNN Classification & Self-supervised Learning
author:
- name: Philipp Pelz
affiliation:
- FAU Erlangen-Nürnberg
bibliography: ref.bib
csl: custom.csl
execute:
eval: true
echo: true
format:
revealjs:
chalkboard: true
width: 1920
height: 1080
template-partials:
- title-slide.html
css: custom.css
theme: custom.scss
slide-number: c/t
logo: eclipse_logo_small.png
background-transition: fade
incremental: false
menu:
side: left
loadIcons: true
footer: ©Philipp Pelz - FAU Erlangen-Nürnberg - Data Science for Electron Microscopy
---
{{< include 04_autoencoders.qmd >}}
{{< include softmax-regression.qmd >}}
{{< include softmax-regression-scratch.qmd >}}
<!-- BEGIN prev-next -->
## Continue
- ← Previous: [Unit 03 — CNNs](../03_cnns/template.html)
- → Next: [Unit 05 — GANs](../05_gan/template.html)
- [All courses](../../index.html)
<!-- END prev-next -->
## References
::: {#refs}
:::
<script>
document.getElementById("marimo-frame").onload = function() {
try {
let iframeDoc = document.getElementById("marimo-frame").contentWindow.document;
let marimoBadge = iframeDoc.querySelector("div.fixed.bottom-0.right-0.z-50");
if (marimoBadge) {
marimoBadge.style.display = "none";
console.log("Marimo badge hidden successfully.");
} else {
console.log("Badge not found.");
}
} catch (error) {
console.warn("Unable to modify iframe content due to CORS restrictions.");
}
};
</script>
</div>