|
1 | 1 | # Convolutional Neural Network Tutorial
|
2 | 2 | Hi! Thanks for checking out my tutorial where I walk you through the process of coding a convolutional neural network in java from scratch. After building a network for a university assignment, I decided to create a tutorial to (hopefully) help others do the same and improve my own understanding of neural networks.
|
3 | 3 |
|
4 |
| -To run this code, please download the CSV mnist data and replace the filepath variables in the main function to match your CSV directory. |
| 4 | +**To run this code, please download the CSV mnist data and replace the filepath variables in the main function to match your CSV directory.** |
| 5 | + |
| 6 | +Link to the first video in the series on youtube: |
| 7 | +https://youtu.be/3MMonOWGe0M |
5 | 8 |
|
6 | 9 | My github repository:
|
7 | 10 | https://github.com/evarae/CNN_Tutorial
|
8 | 11 |
|
9 |
| -CSV MNIST Download: |
| 12 | +CSV MNIST Download: |
10 | 13 | https://pjreddie.com/projects/mnist-in-csv/
|
11 | 14 |
|
12 |
| -Recommended Reading/Resources that I Used: |
| 15 | +### Recommended Reading/Resources that I Used: |
13 | 16 |
|
14 |
| -3Blue1Brown - Neural Networks - https://youtube.com/playlist?list=PLZHQObOWTQDNU6R1_67000Dx_ZCJB-3pi |
| 17 | +3Blue1Brown - *Neural Networks* - https://youtube.com/playlist?list=PLZHQObOWTQDNU6R1_67000Dx_ZCJB-3pi |
15 | 18 |
|
16 |
| -Giuseppe Pio Cannata - “Backpropagation in Fully Convolutional Networks (FCNs)” - https://towardsdatascience.com/backpropagation-in-fully-convolutional-networks-fcns-1a13b75fb56a |
| 19 | +Giuseppe Pio Cannata - *“Backpropagation in Fully Convolutional Networks (FCNs)”* - https://towardsdatascience.com/backpropagation-in-fully-convolutional-networks-fcns-1a13b75fb56a |
17 | 20 |
|
18 |
| -Sumit Saha - “A Comprehensive Guide to Convolutional Neural Networks — the ELI5 way” - https://towardsdatascience.com/a-comprehensive-guide-to-convolutional-neural-networks-the-eli5-way-3bd2b1164a53 |
| 21 | +Sumit Saha - *“A Comprehensive Guide to Convolutional Neural Networks — the ELI5 way”* - https://towardsdatascience.com/a-comprehensive-guide-to-convolutional-neural-networks-the-eli5-way-3bd2b1164a53 |
19 | 22 |
|
20 |
| -Pavithra Solai - “Convolutions and Backpropagations” - https://pavisj.medium.com/convolutions-and-backpropagations-46026a8f5d2c |
| 23 | +Pavithra Solai - *“Convolutions and Backpropagations”* - https://pavisj.medium.com/convolutions-and-backpropagations-46026a8f5d2c |
21 | 24 |
|
22 |
| -Paul-Louis Pröve - “An Introduction to different Types of Convolutions in Deep Learning” - https://towardsdatascience.com/types-of-convolutions-in-deep-learning-717013397f4d |
| 25 | +Paul-Louis Pröve - *“An Introduction to different Types of Convolutions in Deep Learning”* - https://towardsdatascience.com/types-of-convolutions-in-deep-learning-717013397f4d |
0 commit comments