Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Neural Networks
Search
Cheesecake Labs
March 11, 2019
Technology
0
44
Neural Networks
Fred
Cheesecake Labs
March 11, 2019
Tweet
Share
More Decks by Cheesecake Labs
See All by Cheesecake Labs
Cats' wellness & care
cheesecakelabs
0
49
How do we create the first impressions?
cheesecakelabs
0
53
Menstrual cup: suit and freedom
cheesecakelabs
0
57
Life is a cycle, better with a bicycle
cheesecakelabs
0
51
Interview Process: how to get the best of people
cheesecakelabs
1
81
My capsule wardrobe experience
cheesecakelabs
3
58
Stonewall Rebellion and its impact on LGBTQIA+ history
cheesecakelabs
1
37
Pregnancy, childbirth and breastfeeding: What do I have to do with it?
cheesecakelabs
0
45
MBTI - Psychological types described by Jung
cheesecakelabs
0
130
Other Decks in Technology
See All in Technology
Абьюзим random_bytes(). Фёдор Кулаков, разработчик Lamoda Tech
lamodatech
0
270
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
53
32k
Create a Rails8 responsive app with Gemini and RubyLLM
palladius
0
140
生成AIでwebアプリケーションを作ってみた
tajimon
2
120
20250625 Snowflake Summit 2025活用事例 レポート / Nowcast Snowflake Summit 2025 Case Study Report
kkuv
1
200
_第3回__AIxIoTビジネス共創ラボ紹介資料_20250617.pdf
iotcomjpadmin
0
140
登壇ネタの見つけ方 / How to find talk topics
pinkumohikan
3
280
強化されたAmazon Location Serviceによる新機能と開発者体験
dayjournal
2
150
ハノーバーメッセ2025座談会.pdf
iotcomjpadmin
0
150
データプラットフォーム技術におけるメダリオンアーキテクチャという考え方/DataPlatformWithMedallionArchitecture
smdmts
5
560
Definition of Done
kawaguti
PRO
6
460
Amazon Bedrockで実現する 新たな学習体験
kzkmaeda
1
390
Featured
See All Featured
Writing Fast Ruby
sferik
628
61k
Six Lessons from altMBA
skipperchong
28
3.8k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
16
940
Build The Right Thing And Hit Your Dates
maggiecrowley
36
2.8k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.5k
Automating Front-end Workflow
addyosmani
1370
200k
Git: the NoSQL Database
bkeepers
PRO
430
65k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
657
60k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
4
200
Rails Girls Zürich Keynote
gr2m
94
14k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.1k
Transcript
Neural Networks Brief introduction and sample case
"Artificial Intelligence"
AI in Popular Culture
AI Effect "AI is whatever hasn't been done yet." Douglas
Hofstadter "Every time we figure out a piece of it, it stops being magical; we say, 'Oh, that's just a computation.'" Rodney Brooks
Types of AI • Machine learning ◦ Neural networks ▪
Perceptron ▪ Recurrent neural network ▪ Convoluted neural network ◦ Support Vector Machines (SVM) • Fuzzy systems • Evolutionary algorithms ◦ Genetic algorithm ◦ Differential evolution • Swarm Intelligence • Probabilistic methods
Neural Networks
What is this ?
Perceptrons
Perceptrons
Perceptrons • x 1 – Is it raining? • x
2 – Does your girlfriend/boyfriend want to go? • x 3 – Is it near public transportation?
Perceptrons
Perceptrons
Perceptrons
Perceptrons
Perceptrons
Perceptrons
Neurons
Perceptrons
Neurons
Why is this relevant?
Learning!
Learning
Learning
Learning
Real world problem
Recognizing Handwritten Digits
Database The MNIST (Modified National Institute of Standards and Technology)
database Contains 60,000 training images and 10,000 testing images.
Database
Neural Network Architecture
Neural Network Architecture
Neural Network Architecture
Neural Network Architecture
Neural Network Architecture
Measuring Outcome
Neural Network Architecture
Cost Function
Learning
Gradient Descent
Gradient Descent
Gradient Descent
Gradient Descent
Gradient Descent
Gradient Descent
Backpropagation
Backpropagation
Let's CODE!
Repository
__init__()
feedforward()
sigmoid()
sigmoid()
Example use
Training Our Network
Learning
SGD()
update_mini_batch()
backprop()
cost_derivative()
Performance
95%
Current Record The current (2013) record is classifying 9,979 of
10,000 images correctly (99,79%).
How to improve?
Improving our Neural Network • Improved Cost Function ◦ Faster
Training ◦ Reduced Overfitting • Regularization • Dropout • Artificially expanding training data • Convolutional Networks
Thank you!
Acknowledgement Michael Nielsen NeuralNetworksAndDeepLearning.com
Do we have time?
Convolutional Neural Networks
Regular Networks
Convolutional Neural Networks
Convolutional Neural Networks
Convolutional Neural Networks
Convolutional Neural Networks
Feature Maps (Kernels)
Pooling Layers
Max-Pooling
Architecture