Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix captions position activation function exercise #469

Merged
merged 1 commit into from
May 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions episodes/1-introduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,20 @@ b. This solves the XOR logical problem, the output is 1 if only one of the two i
Look at the following activation functions:

**A. Sigmoid activation function**
![](fig/01_sigmoid.svg){alt='Plot of the sigmoid function' width='200px'}

![](fig/01_sigmoid.svg){alt='Plot of the sigmoid function' width='70%' align='left'}
<br clear="all" />

**B. ReLU activation function**
![](fig/01_relu.svg){alt='Plot of the ReLU function' width='200px'}

![](fig/01_relu.svg){alt='Plot of the ReLU function' width='70%' align='left'}
<br clear="all" />

**C. Identity (or linear) activation function (output=input)**
![](fig/01_identity_function.svg){alt='Plot of the Identity function' width='200px'}

![](fig/01_identity_function.svg){alt='Plot of the Identity function' width='70%' align='left'}
<br clear="all" />


Combine the following statements to the correct activation function:

Expand Down
Loading