SlideShare ist ein Scribd-Unternehmen logo
1 von 50
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Shallow Dive into
Deep Learning
Sam Bessalah - @samklr
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
“ This talk is filled with buzzwords and terms,
that might make you sound too nerdy or
pedantic at dinner. ”
Use with caution.
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
In the news, lately ...
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Skype Translator Demo
https://www.youtube.com/watch?v=eu9kMIeS0wQ
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Google DeepMind's Deep Q-learning playing Atari
https://www.youtube.com/watch?v=V1eYniJ0Rnk
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Deep Learning?
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Multiple Definitions :
- A set of algorithms that try to model high-level abstractions in data by
using architectures composed of multiple non linear transformations.
- A set of machine learning algorithms that automatically learn features
hierarchies.
- Usually built using Neural Networks.
- Representation Learning: Automatically learning good representations
of the data for your classifier, i.e learn good features
- Deep Learning : Learning multiple levels of representation with
complex layers architectures.
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Typical Machine Learning Workflow
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Typical Machine Learning Workflow
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
A Neural Networks Primer
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Loose imitation of the brain neurons
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Loose imitation of the brain neurons
@YourTwitterHandle#Devoxx #YourTag @samklr#Devoxx #deepLearning
@nivdul
Perceptron
@YourTwitterHandle#Devoxx #YourTag @samklr#Devoxx #deepLearning
@nivdul
Perceptron
Output Error computed with E, and Network error
minimized with a stochastic gradient descent.
@YourTwitterHandle#Devoxx #YourTag @samklr#Devoxx #deepLearning
Stochastic gradient descent and
Backpropagation
- The optimal value for each weight
where at error achieves a global
minimum.
- Backpropagation : Compute error in
the output, then propagate it back
through the network, to update the
weights during the training phase.
@YourTwitterHandle#Devoxx #YourTag @samklr#Devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#Devoxx #deepLearning
@nivdul
Multi-layer Perceptron
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Problem with Large Networks
- Vanishing Gradient : More layers kills the back propagation. As
information is passed back; gradient value startts to vanish and
become smaller compared to weights.
- Overfitting : Algorithm fits too closely the training data, but will
fail miserably on real examples
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Problem with Large Networks
- Vanishing Gradient : More layers kills the back propagation. As
information is passed back; gradient value startts to vanish and
become smaller compared to weights.
- Overfitting : Algorithm fits too closely the training data, but will
fail miserably on real examples
This led to another AI
winter
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Why does work suddenly ?
- A lot more labeled data
- More compute power CPU and GPU
- Clever new idea on how to train deep
architectures
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Convolution Neural Networks
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Convolution Neural Networks
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Convolution Neural Networks
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Recurrent Neural Networks (RNN)
- Learn from arbitrary sequential inputs, by using their
internal states
- Cannot look far back (back propagation limited)
- Long Short Term Memory Networks help solving this
- Good for NLP, hand writing, etc
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Recurrent Neural Networks (RNN)
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Deep Visual-Semantic Alignments for Generating Image Descriptions CNN + RNN
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Other Techniques
- Auto Encoders
- Restricted Boltzmann Machine (RBM)
- Deep Belief
- Hierarchical temporal memory (HTM)
- LSTM
- More and more ...
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Frameworks and Libraries
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
H20.ai Deep Learning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
DeepLearning4j
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
@YourTwitterHandle#Devoxx #YourTag @samklr#devoxx #deepLearning
Getting Started
- Coursera course on Neural Networks from G. Hinton
- Deeplearning4j.org
- Deeplearning.net
@YourTwitterHandle#Devoxx #YourTag @samklr#Devoxx #deepLearning
Deep Dream
@YourTwitterHandle#Devoxx #YourTag @samklr#Devoxx #deepLearning
CONCLUSION

Weitere ähnliche Inhalte

Ähnlich wie Deep learning for mere mortals - Devoxx Belgium 2015

devopsdays Warsaw 2018 - Chaos while deploying ML
devopsdays Warsaw 2018 - Chaos while deploying MLdevopsdays Warsaw 2018 - Chaos while deploying ML
devopsdays Warsaw 2018 - Chaos while deploying MLThiago de Faria
 
SearchLove London | Matt Beswick, 'Get More From Your Content'
SearchLove London | Matt Beswick, 'Get More From Your Content' SearchLove London | Matt Beswick, 'Get More From Your Content'
SearchLove London | Matt Beswick, 'Get More From Your Content' Distilled
 
Codemotion Berlin 2018 - AI with a devops mindset: experimentation, sharing a...
Codemotion Berlin 2018 - AI with a devops mindset: experimentation, sharing a...Codemotion Berlin 2018 - AI with a devops mindset: experimentation, sharing a...
Codemotion Berlin 2018 - AI with a devops mindset: experimentation, sharing a...Thiago de Faria
 
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...Codemotion
 
Codemotion Milan 2018 - AI with a devops mindset: experimentation, sharing an...
Codemotion Milan 2018 - AI with a devops mindset: experimentation, sharing an...Codemotion Milan 2018 - AI with a devops mindset: experimentation, sharing an...
Codemotion Milan 2018 - AI with a devops mindset: experimentation, sharing an...Thiago de Faria
 
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...Codemotion
 
6 things to expect when you are visualizing (2020 Edition)
6 things to expect when you are visualizing (2020 Edition)6 things to expect when you are visualizing (2020 Edition)
6 things to expect when you are visualizing (2020 Edition)Krist Wongsuphasawat
 
Doing More with Less: Automated, High-Quality Content Generation
Doing More with Less: Automated, High-Quality Content GenerationDoing More with Less: Automated, High-Quality Content Generation
Doing More with Less: Automated, High-Quality Content GenerationHamlet Batista
 
Plumbers vs Persuaders. Martech is Only Half the Story
Plumbers vs Persuaders. Martech is Only Half the StoryPlumbers vs Persuaders. Martech is Only Half the Story
Plumbers vs Persuaders. Martech is Only Half the StoryMartech Alliance
 
21 Content Marketing Tools and Tactics by @staceycav at #TTLPresents - Septem...
21 Content Marketing Tools and Tactics by @staceycav at #TTLPresents - Septem...21 Content Marketing Tools and Tactics by @staceycav at #TTLPresents - Septem...
21 Content Marketing Tools and Tactics by @staceycav at #TTLPresents - Septem...Stacey MacNaught
 
Attribute Driven Styles: The Good, the Bad, and the Unknown (SassConf 2015 Di...
Attribute Driven Styles: The Good, the Bad, and the Unknown (SassConf 2015 Di...Attribute Driven Styles: The Good, the Bad, and the Unknown (SassConf 2015 Di...
Attribute Driven Styles: The Good, the Bad, and the Unknown (SassConf 2015 Di...Jonathan Cutrell
 
Taking Jupyter Notebooks and Apache Spark to the Next Level PixieDust with Da...
Taking Jupyter Notebooks and Apache Spark to the Next Level PixieDust with Da...Taking Jupyter Notebooks and Apache Spark to the Next Level PixieDust with Da...
Taking Jupyter Notebooks and Apache Spark to the Next Level PixieDust with Da...Databricks
 
Open your effing data presentation 2017
Open your effing data presentation 2017Open your effing data presentation 2017
Open your effing data presentation 2017Peter Wells
 
DataDay 2023 Presentation - Notes
DataDay 2023 Presentation - NotesDataDay 2023 Presentation - Notes
DataDay 2023 Presentation - NotesMax De Marzi
 
What I tell myself before visualizing
What I tell myself before visualizingWhat I tell myself before visualizing
What I tell myself before visualizingKrist Wongsuphasawat
 

Ähnlich wie Deep learning for mere mortals - Devoxx Belgium 2015 (20)

20151020 Metis
20151020 Metis20151020 Metis
20151020 Metis
 
devopsdays Warsaw 2018 - Chaos while deploying ML
devopsdays Warsaw 2018 - Chaos while deploying MLdevopsdays Warsaw 2018 - Chaos while deploying ML
devopsdays Warsaw 2018 - Chaos while deploying ML
 
SearchLove London | Matt Beswick, 'Get More From Your Content'
SearchLove London | Matt Beswick, 'Get More From Your Content' SearchLove London | Matt Beswick, 'Get More From Your Content'
SearchLove London | Matt Beswick, 'Get More From Your Content'
 
Codemotion Berlin 2018 - AI with a devops mindset: experimentation, sharing a...
Codemotion Berlin 2018 - AI with a devops mindset: experimentation, sharing a...Codemotion Berlin 2018 - AI with a devops mindset: experimentation, sharing a...
Codemotion Berlin 2018 - AI with a devops mindset: experimentation, sharing a...
 
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
 
IoT London July 2015
IoT London July 2015IoT London July 2015
IoT London July 2015
 
Codemotion Milan 2018 - AI with a devops mindset: experimentation, sharing an...
Codemotion Milan 2018 - AI with a devops mindset: experimentation, sharing an...Codemotion Milan 2018 - AI with a devops mindset: experimentation, sharing an...
Codemotion Milan 2018 - AI with a devops mindset: experimentation, sharing an...
 
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
Thiago de Faria - AI with a devops mindset - experimentation, sharing and eas...
 
Intro to Graph Databases
Intro to Graph DatabasesIntro to Graph Databases
Intro to Graph Databases
 
6 things to expect when you are visualizing (2020 Edition)
6 things to expect when you are visualizing (2020 Edition)6 things to expect when you are visualizing (2020 Edition)
6 things to expect when you are visualizing (2020 Edition)
 
Doing More with Less: Automated, High-Quality Content Generation
Doing More with Less: Automated, High-Quality Content GenerationDoing More with Less: Automated, High-Quality Content Generation
Doing More with Less: Automated, High-Quality Content Generation
 
Plumbers vs Persuaders. Martech is Only Half the Story
Plumbers vs Persuaders. Martech is Only Half the StoryPlumbers vs Persuaders. Martech is Only Half the Story
Plumbers vs Persuaders. Martech is Only Half the Story
 
21 Content Marketing Tools and Tactics by @staceycav at #TTLPresents - Septem...
21 Content Marketing Tools and Tactics by @staceycav at #TTLPresents - Septem...21 Content Marketing Tools and Tactics by @staceycav at #TTLPresents - Septem...
21 Content Marketing Tools and Tactics by @staceycav at #TTLPresents - Septem...
 
Attribute Driven Styles: The Good, the Bad, and the Unknown (SassConf 2015 Di...
Attribute Driven Styles: The Good, the Bad, and the Unknown (SassConf 2015 Di...Attribute Driven Styles: The Good, the Bad, and the Unknown (SassConf 2015 Di...
Attribute Driven Styles: The Good, the Bad, and the Unknown (SassConf 2015 Di...
 
The Emperor Has No Docs (Geecon Oct'23)
The Emperor Has No Docs (Geecon Oct'23)The Emperor Has No Docs (Geecon Oct'23)
The Emperor Has No Docs (Geecon Oct'23)
 
Taking Jupyter Notebooks and Apache Spark to the Next Level PixieDust with Da...
Taking Jupyter Notebooks and Apache Spark to the Next Level PixieDust with Da...Taking Jupyter Notebooks and Apache Spark to the Next Level PixieDust with Da...
Taking Jupyter Notebooks and Apache Spark to the Next Level PixieDust with Da...
 
Open your effing data presentation 2017
Open your effing data presentation 2017Open your effing data presentation 2017
Open your effing data presentation 2017
 
Blasting 10 Big Data Myths with 10 Panel Data Examples
Blasting 10 Big Data Myths with 10 Panel Data ExamplesBlasting 10 Big Data Myths with 10 Panel Data Examples
Blasting 10 Big Data Myths with 10 Panel Data Examples
 
DataDay 2023 Presentation - Notes
DataDay 2023 Presentation - NotesDataDay 2023 Presentation - Notes
DataDay 2023 Presentation - Notes
 
What I tell myself before visualizing
What I tell myself before visualizingWhat I tell myself before visualizing
What I tell myself before visualizing
 

Mehr von Samir Bessalah

Machine Learning In Production
Machine Learning In ProductionMachine Learning In Production
Machine Learning In ProductionSamir Bessalah
 
Tuning tips for Apache Spark Jobs
Tuning tips for Apache Spark JobsTuning tips for Apache Spark Jobs
Tuning tips for Apache Spark JobsSamir Bessalah
 
High Performance RPC with Finagle
High Performance RPC with FinagleHigh Performance RPC with Finagle
High Performance RPC with FinagleSamir Bessalah
 
scalable machine learning
scalable machine learningscalable machine learning
scalable machine learningSamir Bessalah
 
Algebird : Abstract Algebra for big data analytics. Devoxx 2014
Algebird : Abstract Algebra for big data analytics. Devoxx 2014Algebird : Abstract Algebra for big data analytics. Devoxx 2014
Algebird : Abstract Algebra for big data analytics. Devoxx 2014Samir Bessalah
 
Big Data Analytics with Scala at SCALA.IO 2013
Big Data Analytics with Scala at SCALA.IO 2013Big Data Analytics with Scala at SCALA.IO 2013
Big Data Analytics with Scala at SCALA.IO 2013Samir Bessalah
 
Structures de données exotiques
Structures de données exotiquesStructures de données exotiques
Structures de données exotiquesSamir Bessalah
 

Mehr von Samir Bessalah (9)

Machine Learning In Production
Machine Learning In ProductionMachine Learning In Production
Machine Learning In Production
 
Tuning tips for Apache Spark Jobs
Tuning tips for Apache Spark JobsTuning tips for Apache Spark Jobs
Tuning tips for Apache Spark Jobs
 
High Performance RPC with Finagle
High Performance RPC with FinagleHigh Performance RPC with Finagle
High Performance RPC with Finagle
 
scalable machine learning
scalable machine learningscalable machine learning
scalable machine learning
 
mesos-devoxx14
mesos-devoxx14mesos-devoxx14
mesos-devoxx14
 
Algebird : Abstract Algebra for big data analytics. Devoxx 2014
Algebird : Abstract Algebra for big data analytics. Devoxx 2014Algebird : Abstract Algebra for big data analytics. Devoxx 2014
Algebird : Abstract Algebra for big data analytics. Devoxx 2014
 
Big Data Analytics with Scala at SCALA.IO 2013
Big Data Analytics with Scala at SCALA.IO 2013Big Data Analytics with Scala at SCALA.IO 2013
Big Data Analytics with Scala at SCALA.IO 2013
 
Scala+data
Scala+dataScala+data
Scala+data
 
Structures de données exotiques
Structures de données exotiquesStructures de données exotiques
Structures de données exotiques
 

Kürzlich hochgeladen

Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...amitlee9823
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...amitlee9823
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...amitlee9823
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...amitlee9823
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxolyaivanovalion
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...amitlee9823
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Researchmichael115558
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 

Kürzlich hochgeladen (20)

Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptx
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 

Deep learning for mere mortals - Devoxx Belgium 2015