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
La reconnaissance d’images par réseau de neurones
Search
walid chergui
February 17, 2017
Programming
0
39
La reconnaissance d’images par réseau de neurones
walid chergui
February 17, 2017
Tweet
Share
More Decks by walid chergui
See All by walid chergui
Ansible, Infrastructure as code - VoxxedDays Luxembourg 2016
oraclewalid
0
160
Other Decks in Programming
See All in Programming
マイベストのシンプルなデータ基盤の話 - Googleスイートとのつき合い方 / mybest-simple-data-architecture-google-nized
snhryt
0
130
業務でAIを使いたい話
hnw
0
230
Designing Repeatable Edits: The Architecture of . in Vim
satorunooshie
0
240
スキーマ駆動で、Zod OpenAPI Honoによる、API開発するために、Hono Takibiというライブラリを作っている
nakita628
0
340
AsyncSequenceとAsyncStreamのプロポーザルを全部読む!!
s_shimotori
1
230
問題の見方を変える「システム思考」超入門
panda_program
0
110
alien-signals と自作 OSS で実現する フレームワーク非依存な ロジック共通化の探求 / Exploring Framework-Agnostic Logic Sharing with alien-signals and Custom OSS
aoseyuu
3
5.6k
実践Claude Code:20の失敗から学ぶAIペアプログラミング
takedatakashi
18
9.5k
オンデバイスAIとXcode
ryodeveloper
0
400
Swift Concurrency 年表クイズ
omochi
3
220
お前も Gemini CLI extensions を作らないか?
satohjohn
0
110
O Que É e Como Funciona o PHP-FPM?
marcelgsantos
0
250
Featured
See All Featured
Visualization
eitanlees
150
16k
Raft: Consensus for Rubyists
vanstee
140
7.2k
Scaling GitHub
holman
463
140k
Building Applications with DynamoDB
mza
96
6.7k
Docker and Python
trallard
46
3.6k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.2k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Typedesign – Prime Four
hannesfritz
42
2.9k
Learning to Love Humans: Emotional Interface Design
aarron
274
41k
Why Our Code Smells
bkeepers
PRO
340
57k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.2k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
253
22k
Transcript
La reconnaissance d’images par réseau de neurones Walid Chergui #SnowCamp
2017
Sommaire Encodage Convolution Réseau de neurone simple Réseau de neurone
de convolution LeNet Frameworks & code ImagNet
Moi Développeur Scala et Java FP Machine learning Les architectures
distribuées DevOps
Les images - Matrice
Les images RGB
Convolution Source : Wikipedia
Convolution
Réseaux de neurones Convolutional Neural Networks (CNN) Recurrent Neural Networks
(RNN) Autoencoders
CNN - types
Réseau de neurones
CNN-LeNet
Convolution (1*32*32) -> (16*32*32)
Relu (rectified linear unit )
Pooling (16*32*32) -> (16*16*16)
Fully Connected
Frameworks Caffe Torch Theano / Lasagne TensorFlow / Keras Deeplearning4j
CIFAR-10
Deeplearning4J CODE CODE CODE !!!
Depper ….
AlexNet (2012)
VGG Net (2014)
GoogLeNet (2015)
Pre-trained neural network TrainedModelHelper helper = new TrainedModelHelper(TrainedModels.VGG16); ComputationGraph vgg16
= helper.loadModel(); DataNormalization scaler = new VGG16ImagePreProcessor(); scaler.transform(image); INDArray[] output = vgg16.output(false,image); System.out.println(TrainedModels.VGG16.decodePredictions(output[0]));
Merci ! @walidchergui