64
Introduction to deep learning Sergey ermolin, big data technologies April , 2018 [email protected] github.com/sermolin

Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

  • Upload
    others

  • View
    3

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Intel® Confidential — INTERNAL USE ONLY

Introduction to deep learningSergey ermolin, big data technologies

April , 2018

[email protected] github.com/sermolin

Page 2: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Artificial Neural Networks

sou

rce

: htt

p:/

/bit

.ly/2

jjzF

yt

https://software.intel.com/bigdl

"Copyright Drabas, Lee, Microsoft MLADS workshop, 2017. Reproduced with permission."

Page 3: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

AgendaMorning: Deep Learning Intro, Part 1

• Use-cases: (Image-based property search, Recommendation engine, MLS subscriber “churn”., Customized weekly real-estate newsletter generation, Anomaly detection)

• Apache Spark and BigDL

Afternoon:

• Deep Learning Frameworks (TensorFlow, PyTorch, Keras, BigDL)

• GPUs vs CPUs.

• Deep learning on Apache Spark and use-cases when it is appropriate

• Deep Learning Intro, Part 2

• Hands-on code review of Python code for house style classificationhttps://software.intel.com/bigdl

Page 4: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

AcknowledgementsAshish and Jeremy – for conceiving the idea of the workshop

Olga Ermolin – for coming up with the house style classification use-case for it

Yuhao Yang (Intel) – for helping me prepare and debug Jupyter notebook

Alex Kalinin – for helping setting up backend infrastructure:

• Ten 96-core AWS servers.

• Twenty Docker containers running in each server.

https://software.intel.com/bigdl

Page 5: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL 5

Linear Regression as a neural network

https://software.intel.com/bigdl

Hypothesis:

Find parameters that minimize the cost function

Define cost function

Page 6: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL 6

Obfuscating - new terms

https://software.intel.com/bigdl

“Neuron” (plus a “non-linearity” or “activation function”)

“Cost function”

“Back-propagation”

> 0 or <0?

“non-linearity”

Or

“activation function”

“Neural Net (Fully-connected)”

Page 7: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Artificial Neural Network (Fully-Connected)

• A "layer" is a set of neurons

• Typically consists of input, hidden and output layers

• Input layer acts as an interface

• The neurons in hidden layer(s) and the output modify data

• A black-box model

• Insanely computationally intensive. That’s why it did not go anywhere in the 90s

https://software.intel.com/bigdl

Page 8: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Enter Convolutional Neural Nets

https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 9: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 10: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 11: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

• Still insanely computationally intensive. but better than fully-connected nets. Compute farms are a must even for small images

• Derivatives are analytical, not numerical

• Far more parameters than input variable. Unstable and easily fooled.

• NN research is somewhat of a dark art: “Improving performance without breaking the network”

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 12: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

“vanilla” Feed-

Forward NN

https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 13: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Deep Learning - Summary• A way of extracting latent features from inputs and use them for

predicting/affecting events

• Require to be trained on a large body of inputs to be useful

• Training is done via gradient minimization

• Insanely computationally intensive.

Future topics:

• Unsupervised learning.

• Reinforcement Learning

• Generative networks

https://software.intel.com/bigdl

Page 14: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

An imitation of human’s brain

Dense net of simple structures

Around 100 billion neurons

Each connected to ~10k other neurons

1015 synaptic connections

sou

rce

: htt

p:/

/bit

.ly/2

jc9

mY

w

"Copyright Drabas, Lee, Microsoft MLADS workshop, 2017. Reproduced with permission."

Page 15: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

A neuron at work

Dendrites receive signals

Neuron’s cell body acts as an accumulator

If energy level in the neuron’s body exceeds certain level it fires a short pulse through the axon ended with synaptic terminals

sou

rce

: htt

p:/

/bit

.ly/2

jjGlN

d

"Copyright Drabas, Lee, Microsoft MLADS workshop, 2017. Reproduced with permission."

Page 16: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Conceptual mathematical model

"Copyright Drabas, Lee, Microsoft MLADS workshop, 2017. Reproduced with permission."

Page 17: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Activation functions

"Copyright Drabas, Lee, Microsoft MLADS workshop, 2017. Reproduced with permission."

Page 18: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project
Page 19: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Intel® Confidential — INTERNAL USE ONLY

Introduction to deep learning – Part 2Sergey ermolin, big data technologies

April , 2018

Page 20: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Refresher

sou

rce

: htt

p:/

/bit

.ly/2

jjzF

yt

https://software.intel.com/bigdl

"Copyright Drabas, Lee, Microsoft MLADS workshop, 2017. Reproduced with permission."

Page 21: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL 21

Linear Regression as a neural network

https://software.intel.com/bigdl

Hypothesis:

Find parameters that minimize the cost function

Define cost function

ModelTrue

Values

Page 22: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Optimization:

https://software.intel.com/bigdl

1. Pick a model2. Find vector that results in the smallest value of cost function

3. Repeat step 2 until happy4. If unhappy, repeat steps 1 & 2

Page 23: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Optimization:

https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 24: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Optimization:

https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 25: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Optimization:

https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 26: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 27: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 28: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Image Classification Problem• Task:

• Given an image, place it into one of 10 class “buckets”

https://software.intel.com/bigdl

Page 29: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Image Classification Problem – K-means approach

https://software.intel.com/bigdl

Page 30: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Image Classification Problem – SoftMax (better)

https://software.intel.com/bigdl

Page 31: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 32: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 33: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 34: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 35: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 36: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Page 37: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

"Copyright Fei-Fei, Johnson, Yeung, Stanford CS231N Lecture Slides, 2017. Reproduced with permission."

Transfer Learning is Pervasive. It is a norm, rather than an exception

Page 38: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL https://software.intel.com/bigdl

Tying it all together – House Style classification

TrainedGoogleNet

Model 1024-long

“embeddings”vector

SoftMax Linear

Classifier

- ‘Ranch’- ‘Traditional’- ‘Mediter’- ‘Modern’

• Training: No “deep learning” training on new images.

• Much faster than full retraining. No parameter tuning. No retraining (or infrequent)

• Single-pass-per-image Deep Learning prediction.

• Can be real-time in production (sub 1-sec). Low compute resources needed. No GPU.

• Classification is done using linear classifier

• Can be *easily* extended to 100s of house style classe.

Page 39: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

https://github.com/intel-analytics/BigDL

Deep Learning - Summary• A way of extracting latent features from inputs and use them for

predicting/affecting events

• Require to be trained on a large body of inputs to be useful

• Training is done via gradient minimization

• Insanely computationally intensive.

Future topics:

• Unsupervised learning.

• Reinforcement Learning

• Generative networks

https://software.intel.com/bigdl

Page 40: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project
Page 41: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Intel® Confidential — INTERNAL USE ONLY

Machine Learning Use-Cases

Big Data Technologies, Software & Services Group

Page 42: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

manufacturingconsumer Health Finance RetailScientific

computing Gigaspaces MLS Listings Jobs Search

Engine

UCSF UnionPay ChinaLife

(Insurance) Mastercard

JD.Com Steel manufacturing

Cray

Call center routing, Image similarity search, smart job search

Analysis of 3D MRI models for knee degradation

Fraud detection Recommendation, Customer/Merchant

Propensity

Image feature extraction (Inference)

Steel Surface defect detection

Weather forecasting

INTEL CONFIDENTIAL - INTERNAL ONLY

Page 43: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Image feature Extraction pipeline with BigDL (Inference solution)

Preprocess

Resize

Normalize

ToBatch

Preprocess

Resize

ToBatch

Hbase

HDFS

Crop 101010

……

Boxes & Scores

SSD Model

DeepBit Model

Retail

https://software.intel.com/en-us/articles/building-large-scale-image-feature-extraction-with-bigdl-at-jdcom

Page 44: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Artificial Intelligence Redefines the Call Center Customer Experience (Training)

User peaks using web interface

Browser converts speech to text and

sends to controller

Controller writes data to

InsightEdge and to Kafka topic

Spark job listens on Kafka topic and

using BIGDL mode, creates

prediction

BIGDL writes Prediction to

InsightEdge data grid

InsightEdge event processor listens or Prediction data

and routes call session

NLP Processing

Training, prediction, and tuning

I have a windows MAC problem

Route to the MAC expert

Stop Pressing 0 or *Automatic routing to the right agent for the perfect personalized experience

Customer service

https://blog.gigaspaces.com/gigaspaces-to-demo-with-intel-at-strata-data-conference-and-microsoft-ignite/

Page 45: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Non-real time indexing/bucketizing of similar images in the database.

Image similarity (“distance”) becomes an extra parameter in addition to area, location, size, price, etc.

If you looked at this house….. You will want to look at this one, too

Runs periodically on the refreshed database.

Needs to be scalable nationwide. Distributed compute solution needed (Spark)

Real estate

INTEL CONFIDENTIAL - INTERNAL ONLY

MLS Listings image similarity PoC demo is ready and available here: https://homes-prod-homes-poc.azurewebsites.net/

Page 46: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project
Page 47: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Deep Learning Data Flow

Labeled Dataset of Real Estate

Images (Bing Search)

BigDLVGGArch

BigDLTrained Model

+ =

Data Engineering Coding

● Long Compute. 8500 images● 2 nodes, 28 cores/node. 3 minutes for a one single pass● Model parameters are changing.● Repeat until convergence● But: only do once !

Note: Images are *not* stored in the modelNote: you can trade compute resources for time.

Compute

Train

Page 48: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Deep Learning Data Flow

FeatureVector

BigDLTrained Model

Image Class (Front, Bdr, Bath,…)

House Style Tag (Ranch, Victorian,…)

House Levels (1, 2..)

Latent Features (25k entries)

+=

● Short Compute. 2 sec/image● 1 node, 1 core/node● Model parameters unchanged.● Only run once per image● But: need to do for every image in

the search dataset !

Score

Compute Only

Page 49: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Deep Learning Data Flow

Labeled Dataset of Real Esate

Images (Bing Search)

BigDLVGGArch

BigDLTrained Model

+ =

FeatureVector

BigDLTrained Model

Image Class (Front, Bdr, Bath,…)

House Style Tag (Ranch, Victorian,…)

House Levels (1, 2..)

Latent Features (25k entries)

+=

Tra

inin

gS

co

rin

g

Page 50: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Deep Learning Data Flow

Listing images

BigDL Trained Model

FeatureVectors

MLS Query Landing Page

BigDL Trained Model

Cosine Similarity

+ Tag + Class

Rank

Top 10

MLS Listings FrontEnd

Scoring

Page 51: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Deep Learning Data Flow

Labeled Image

Dataset (Bing Search)

Big DL Model+ =

Listing ImagesBig DL

+ Model

Big DL +

Model

Cosine Similarity

+ Tag + Class

Rank

• Room Type (Class)• House Style (Tag)• House Levels (Tag)• Features (25k vec)

Top 10

MLS Listings FrontEnd

Page 52: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Engineering Team

● Data scientist, proficient in Machine Learning / Deep

Learning

● Software Engineer, experience with Apache Spark.

● Technical project manager

Domain Expertise:

● Machine Learning / Deep Learning,

● Python, Scala● Software Engineer, Web API

● Software Engineer, Web UI

Domain Expertise:

● OData, .net Core MSSQL

● C#, HTML, JavaScript

Page 53: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

How likely is an existing (or a new) customer to come back to a store?What would it take to get a customer in the door?

Retail: Predicting Customer Loyalty

Page 54: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Retail: Predicting Customer Loyalty

Page 55: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Retail: Predicting Customer Loyalty

Page 56: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Retail: Predicting Customer Loyalty

Page 57: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Counter-Example: When *not* to use MLBusiness Need: Given monthly real-estate statistics,

generate per-market area customizable Realtor Newsletters?

Page 58: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Anomaly Detection with RNN-LSTM

Page 59: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Anomaly Detection with RNN-LSTM

Page 60: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Anomaly Detection with RNN-LSTM

Page 61: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Anomaly Detection with RNN-LSTM

Page 62: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Anomaly Detection with RNN-LSTM

Page 63: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project

Anomaly Detection with RNN-LSTM

Page 64: Introduction to deep learning · 2018. 5. 3. · Data scientist, proficient in Machine Learning / Deep Learning Software Engineer, experience with Apache Spark. Technical project