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
37
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
150
Other Decks in Programming
See All in Programming
テストケースの名前はどうつけるべきか?
orgachem
PRO
1
180
どうして手を動かすよりもチーム内のコードレビューを優先するべきなのか
okashoi
3
780
週次リリースを実現するための グローバルアプリ開発
tera_ny
1
390
生成AIでGitHubソースコード取得して仕様書を作成
shukob
0
590
数十万行のプロジェクトを Scala 2から3に完全移行した
xuwei_k
0
480
LLM Supervised Fine-tuningの理論と実践
datanalyticslabo
8
1.8k
php-conference-japan-2024
tasuku43
0
390
ゆるやかにgolangci-lintのルールを強くする / Kyoto.go #56
utgwkk
2
710
今年のアップデートで振り返るCDKセキュリティのシフトレフト/2024-cdk-security-shift-left
tomoki10
0
320
PHPで作るWebSocketサーバー ~リアクティブなアプリケーションを知るために~ / WebSocket Server in PHP - To know reactive applications
seike460
PRO
2
720
QA環境で誰でも自由自在に現在時刻を操って検証できるようにした話
kalibora
1
110
コンテナをたくさん詰め込んだシステムとランタイムの変化
makihiro
1
170
Featured
See All Featured
Thoughts on Productivity
jonyablonski
68
4.4k
How GitHub (no longer) Works
holman
312
140k
It's Worth the Effort
3n
183
28k
A designer walks into a library…
pauljervisheath
205
24k
A Modern Web Designer's Workflow
chriscoyier
693
190k
Become a Pro
speakerdeck
PRO
26
5.1k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Keith and Marios Guide to Fast Websites
keithpitt
410
22k
Visualization
eitanlees
146
15k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
6.9k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
127
18k
GraphQLとの向き合い方2022年版
quramy
44
13k
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