SlideShare a Scribd company logo
1 of 60
Big Data Consultant &
Data Scientist
趙國仁
Craig Chao
chaocraig@gmail.com
從行動廣告大數據觀點談 Big Data
“BIG DATA” from Mobile Ads Perspective
Prelog – Myths of Big Data
• Big Data, Big Hype?
Prelog – Myths of Big Data
• Machine Learning & Statistics have been
used in many places, nothing new in Big
Data?
Prelog – Myths of Big Data
• Big Data is Hadoop / Open Source?
“BIG” data?
big “DATA”?
Challenges of Big Data - 4V
資料量大 資料多樣性
資料輸入
和處理速度快
資料真實性
4V & Solution Directions
Challenges Directions
Volume Scalability
Velocity Real-time Response
Variety All data
Veracity Knowledge
engineering &
Machine intelligence
The Revolution of Big Data
DATA
Hypotheses
Statistical Analysis
BIG DATA
Hypotheses
Machine Learning
Data Mining
Machine-generated
Sampling, Multi-variant… All, Hyper space, …
Volume, Velocity, Variety, Veracity
Human-explainable
Reports vs. models
Segments Reports
For Human
(Explanatory)
Models Data-driven
Actions
Efficiency Intelligence Effectiveness
Data Science is the art of turning data into actions.
Data Science Venn Diagram
Stat vs. MLDM?
(Big) Programming?
Tags?
Common Data Categories
• Persona
– Age, Gender, Birth date, City,
…
• Attributes
– Phone brand/model, location,
time, App, browser, banner…
• Behavior
– Click, Conversion(Installation,
Cart, Purchase, …),
Activation, Payment…
大數據分析找到更多潛在客群
指定
投遞
指定
排除
曝光
頻次
APP
偵測
投放
情境
投放
廣告
偏好
指定
品牌
粉絲
產品
使用者
興趣
偏好
收集用戶行為數據
Targeting Capability
11
22
33
大數據分析
找到潛在客群
優化投放
In-database Processing(MPP)
Computation Performance
Source: Matei Zaharia(2013)
Pricing Engine
Framework
Kafka
HDFSHDFS
Apache
Spark
Apache
Spark
Jenkins
Realtime processors
( Spark Streaming)
Realtime processors
( Spark Streaming)
DataInjection
Speed Layer
Batch Layer
ServingLayer
Kafka
DataStreaming
CouchbaseCouchbase
Docker Container
Avro
Avro
Akka/Scala Actors
4R: Reach, Richness,
Representation, Range
Reach
Richness
High
High
Low
使用者接觸量 (DAU)
資料豐富度
(Behavioral data)
Range
High
系統範圍
( Affiliate of
whole context)
Representation
呈現形式與內容
(Format &
Content)
Data Economy
Traditional -> Internet Economy
HighREACH
RICHNESS
High
Low
Traditional
Economy
Internet Economy
(quality)
(quantity)
Reach: The Value Funnel
CPM campaign:
Revenue = N/1000 ⋅CPM
CPC campaign:
Revenue = N ⋅ CTR ⋅ CPC
CPA campaign:
Revenue = N ⋅ CTR ⋅
CVR⋅ CPA
UU Reach (DAU)
ARPU = Life-time Value
Richness
Data Quality  Predictive Power
Richness: Predictive Power
APP 類型偏好
使用裝置
使用時間
定位區域
廣告行為偏好
Conversions Logs
Behavioral Data Attribution Data
Richness
• Data Quality Richness
• Data Utilization Richness
– Call taxi (short vs. long route)
– Download times vs. Activation days
• Data Model Richness
Simplest Model
Logistic Regression
LM & LR
Source: http://www.saedsayad.com/logistic_regression.htm
歸一化的好處在於數值具備可比性和收斂的邊界
Likelihood
User-based / Item-based
Recommendation
Matrix = Associations
Rose Navy Olive
Alice 0 +4 0
Bob 0 0 +2
Carol -1 0 -2
Dave +3 0 0
• Things are associated
Like people to colors
• Associations have
strengths
Like preferences and
dislikes
• Can quantify associations
Alice loves navy = +4,
Carol dislikes olive = -2
• We don’t know all
associations
Many implicit zeroes
Source: Sean Owen(2012), Cloudera
In Terms of Few Features
• Can explain associations by appealing to underlying features in
common (e.g. “blue-ness”)
• Relatively few (one “blue-ness”, but many shades)
(Alice)
(Blue)
(Navy)
Source: Sean Owen(2012), Cloudera
Losing Information is Helpful
• When k (= features) is small, information is lost
• Factorization is approximate
(Alice appears to like blue-ish periwinkle too)
(Alice)
(Blue)
(Navy)
(Periwinkle)
Source: Sean Owen(2012), Cloudera
Singular Value Decomposition
AA m
=
n
SS
k
k• T’T’
n
m
•ΣΣ
Context-aware Matrix
Factorization
Sample FM Matrix
Optimization Perspective
Gradient Descent
FM with SGD
Rendle, S.(2012)
Factorization Machine - R
• #
• # Factorization machine
• #
• logis <- function(x) {
• result <- 1./(1+exp(-x))
• return(result)
• }
• wTx <- function(x, w, V) { #decision value
• V.size <- dim(V)
• p <- V.size[1] #rows
• k <- V.size[2] #columns
• tmp = 0;
• for (i in 1:k) {
• tmp1 <- 0;
• tmp2 <- 0;
• for (j in 1:p) {
• tmp1 = tmp1 + V[j,i] %*% x[j];
• tmp2 = tmp2 + (V[j,i] %*% x[j])^2;
• }
• tmp = tmp + (tmp1^2-tmp2);
• }
• tmp = 0.5*tmp;
• x[length(x)+1] <- 1
• result <- x %*% t(w) + tmp #x is all features + bias
• return(result)
• }
Un-optimized version
Factorization Machine - R
• FMlogistic_<- function(A, y, At, yt, k, lambda, eta, numiter) {
• #
• # A: input matrix
• # y: lable
• # At: Test of A
• # yt: Test of y
• # k: number of latent factors
• # lambda: regularization parameters
• # eta: learning rate
• # numiter: number of interactions
• #
•
• A.size <- dim(A) #[numinst, numfeat]
• numinst <- A.size[1]
• numfeat <- A.size[2]
• nt <- numinst
•
• #B <- matrix(1, numinst, numfeat)
• #B.size <- dim(B)
• #Bt <- matrix(1, B.size[1], B.size[2])
• sigma <- 0.1 # standard deviation
• # Start here… Model parameter theda = (w0, w, V)
• w0 <- matrix(0, 1, numfeat+1) # weights of features, +1 is for bias
• w <- matrix(0, 1, numfeat+1) # weights of features, +1 is for bias
• #V0 <- matrix(c(rnorm(numfeat*k, mean = 0, sd = sigma)), numfeat, k) # generates an numfeat-by-k output matrix
• V0 <- matrix(0.1, numfeat, k)
• V <- matrix(0, numfeat, k) # output matrix
Factorization Machine - R
• for (iter in 1:numiter) {
• for (i in 1:numinst) {
• for (j in 1:numfeat) {
• w[j] <- w0[j] - eta*((logis(wTx(A[i,], w0, V0) %*% y[i])-1)*y[i]*A[i,j]+2*lambda*w0[j])
• for (numlatent in 1:k) {
• ind <- setdiff(1:numfeat, j)
• hx <- A[i,j] %*% sum( V0[ind,numlatent] * t(A[i,ind]) )
• V[j,numlatent] <- V0[j,numlatent] - eta*((logis(wTx(A[i,], w0, V0)*y[i])-1)*y[i] * hx + 2*lambda*V0[j,numlatent])
• }
• }
• w[length(w)] = w0[length(w0)] - eta*((logis(wTx(A[i,], w0, V0)*y[i])-1)*y[i]+2*lambda*w0[length(w0)])
• V0 <- V
• w0 <- w
• }
• yhat <- matrix(0, nt, 1)
• for (i in 1:nt) {
• yhat[i] <- wTx(At[i,], w, V)
• }
• prob <- 1./(1+exp(-yhat));
• yhat[yhat>=0] <- 1;
• yhat[yhat <0] <- -1;
• acc <- sum(yt==yhat)/nt;
• cat( sprintf('n#iter = %d, training accurcy = %fn', iter , acc) )
•
• }
• return( list(prob, yhat) )
• }
Richness
• Data Model Richness
Representation
Representation
Representation
TV campaign
Range
Mobile Campaign Offline Campaign
Reach
Richness
Cross-screen Effect
成功案例:掌握 4R 成效更優異
!
Cross-screen synergy
Big data synergy with Cross-screen effect
+TV
Range
- Roger Martin
Rothman School of Management, Toronto
If only attach importance to quantify the business
model, it will not have the ability to find a potential
growth opportunities: "The pursuit of quantifying
the biggest problem is that people ignore the
context of the behavior generated, detached from
the context of the event, and have not been
included in the model ignores variables
effectiveness. "
企業若只重視量化模式,
將無法擁有尋得潛在成長
契機的能力:「追求量化
最大的問題在於,忽略
人們產生行為的脈絡,
把事件從情境中抽離,
且忽略沒有被納入模式
中的變數效力。」
Range
Range
• Google trend, Viral install…
High
4R: Reach, Richness,
Representation, Range
Reach
Richness
High
High
Low 使用者接觸量 (DAU)
資料豐富度
(Behavioral data)
Range
系統範圍
( Affiliate of
whole context)
Representation
呈現形式與內容
(Format &
Content)
Big Data - Google Now
Dulingo
Facebook Personal Assistant
全球最先進
的追蹤器:
活動追蹤、
睡眠追蹤、
Smart
Coach 和
心臟健康記
錄
iPaaS 幫助各公司在雲端中及內部部
署連接企業應用程式
癌
症
分
析
視
覺
化
iPod
之父
Tony
Fadell
創建的
恆溫器
智慧家
居公司
醫療資
料的整
合與分
析
政
府
支
出
公
開
平
台
開
車
更
省
油
、
安
全
服務科
技領域
人士的
在線理
財咨詢
管理平
台
World, Model & Theory
Credit: John F. Sowa
BIG
DAT
A
資料始終為了人性
Use Data, not be Used.
Summary - Innovation
謝謝大家!
chaocraig@gmail.com
Data Scientist as CEO of Data
Source: 經理人 (117)

More Related Content

What's hot

LSGAN - SIMPle(Simple Idea Meaningful Performance Level up)
LSGAN - SIMPle(Simple Idea Meaningful Performance Level up)LSGAN - SIMPle(Simple Idea Meaningful Performance Level up)
LSGAN - SIMPle(Simple Idea Meaningful Performance Level up)Hansol Kang
 
Variational Autoencoder
Variational AutoencoderVariational Autoencoder
Variational AutoencoderMark Chang
 
VAE-type Deep Generative Models
VAE-type Deep Generative ModelsVAE-type Deep Generative Models
VAE-type Deep Generative ModelsKenta Oono
 
Sparse Kernel Learning for Image Annotation
Sparse Kernel Learning for Image AnnotationSparse Kernel Learning for Image Annotation
Sparse Kernel Learning for Image AnnotationSean Moran
 
NIPS2017 Few-shot Learning and Graph Convolution
NIPS2017 Few-shot Learning and Graph ConvolutionNIPS2017 Few-shot Learning and Graph Convolution
NIPS2017 Few-shot Learning and Graph ConvolutionKazuki Fujikawa
 
Scaling out logistic regression with Spark
Scaling out logistic regression with SparkScaling out logistic regression with Spark
Scaling out logistic regression with SparkBarak Gitsis
 
Predicting organic reaction outcomes with weisfeiler lehman network
Predicting organic reaction outcomes with weisfeiler lehman networkPredicting organic reaction outcomes with weisfeiler lehman network
Predicting organic reaction outcomes with weisfeiler lehman networkKazuki Fujikawa
 
Probabilistic Retrieval TFIDF
Probabilistic Retrieval TFIDFProbabilistic Retrieval TFIDF
Probabilistic Retrieval TFIDFDKALab
 
Generative adversarial networks
Generative adversarial networksGenerative adversarial networks
Generative adversarial networks남주 김
 
Graph Convolutional Neural Networks
Graph Convolutional Neural Networks Graph Convolutional Neural Networks
Graph Convolutional Neural Networks 신동 강
 
Numerical tour in the Python eco-system: Python, NumPy, scikit-learn
Numerical tour in the Python eco-system: Python, NumPy, scikit-learnNumerical tour in the Python eco-system: Python, NumPy, scikit-learn
Numerical tour in the Python eco-system: Python, NumPy, scikit-learnArnaud Joly
 
Security of Artificial Intelligence
Security of Artificial IntelligenceSecurity of Artificial Intelligence
Security of Artificial IntelligenceFederico Cerutti
 
Additive model and boosting tree
Additive model and boosting treeAdditive model and boosting tree
Additive model and boosting treeDong Guo
 
InfoGAN : Interpretable Representation Learning by Information Maximizing Gen...
InfoGAN : Interpretable Representation Learning by Information Maximizing Gen...InfoGAN : Interpretable Representation Learning by Information Maximizing Gen...
InfoGAN : Interpretable Representation Learning by Information Maximizing Gen...Hansol Kang
 
Introduction to Big Data Science
Introduction to Big Data ScienceIntroduction to Big Data Science
Introduction to Big Data ScienceAlbert Bifet
 
Gradient Boosted Regression Trees in scikit-learn
Gradient Boosted Regression Trees in scikit-learnGradient Boosted Regression Trees in scikit-learn
Gradient Boosted Regression Trees in scikit-learnDataRobot
 
Efficient end-to-end learning for quantizable representations
Efficient end-to-end learning for quantizable representationsEfficient end-to-end learning for quantizable representations
Efficient end-to-end learning for quantizable representationsNAVER Engineering
 

What's hot (20)

LSGAN - SIMPle(Simple Idea Meaningful Performance Level up)
LSGAN - SIMPle(Simple Idea Meaningful Performance Level up)LSGAN - SIMPle(Simple Idea Meaningful Performance Level up)
LSGAN - SIMPle(Simple Idea Meaningful Performance Level up)
 
Europy17_dibernardo
Europy17_dibernardoEuropy17_dibernardo
Europy17_dibernardo
 
Variational Autoencoder
Variational AutoencoderVariational Autoencoder
Variational Autoencoder
 
Aaex3 group2
Aaex3 group2Aaex3 group2
Aaex3 group2
 
VAE-type Deep Generative Models
VAE-type Deep Generative ModelsVAE-type Deep Generative Models
VAE-type Deep Generative Models
 
Sparse Kernel Learning for Image Annotation
Sparse Kernel Learning for Image AnnotationSparse Kernel Learning for Image Annotation
Sparse Kernel Learning for Image Annotation
 
NIPS2017 Few-shot Learning and Graph Convolution
NIPS2017 Few-shot Learning and Graph ConvolutionNIPS2017 Few-shot Learning and Graph Convolution
NIPS2017 Few-shot Learning and Graph Convolution
 
Scaling out logistic regression with Spark
Scaling out logistic regression with SparkScaling out logistic regression with Spark
Scaling out logistic regression with Spark
 
Predicting organic reaction outcomes with weisfeiler lehman network
Predicting organic reaction outcomes with weisfeiler lehman networkPredicting organic reaction outcomes with weisfeiler lehman network
Predicting organic reaction outcomes with weisfeiler lehman network
 
Probabilistic Retrieval TFIDF
Probabilistic Retrieval TFIDFProbabilistic Retrieval TFIDF
Probabilistic Retrieval TFIDF
 
Generative adversarial networks
Generative adversarial networksGenerative adversarial networks
Generative adversarial networks
 
Graph Convolutional Neural Networks
Graph Convolutional Neural Networks Graph Convolutional Neural Networks
Graph Convolutional Neural Networks
 
Numerical tour in the Python eco-system: Python, NumPy, scikit-learn
Numerical tour in the Python eco-system: Python, NumPy, scikit-learnNumerical tour in the Python eco-system: Python, NumPy, scikit-learn
Numerical tour in the Python eco-system: Python, NumPy, scikit-learn
 
Security of Artificial Intelligence
Security of Artificial IntelligenceSecurity of Artificial Intelligence
Security of Artificial Intelligence
 
Additive model and boosting tree
Additive model and boosting treeAdditive model and boosting tree
Additive model and boosting tree
 
InfoGAN : Interpretable Representation Learning by Information Maximizing Gen...
InfoGAN : Interpretable Representation Learning by Information Maximizing Gen...InfoGAN : Interpretable Representation Learning by Information Maximizing Gen...
InfoGAN : Interpretable Representation Learning by Information Maximizing Gen...
 
Introduction to Big Data Science
Introduction to Big Data ScienceIntroduction to Big Data Science
Introduction to Big Data Science
 
Gradient Boosted Regression Trees in scikit-learn
Gradient Boosted Regression Trees in scikit-learnGradient Boosted Regression Trees in scikit-learn
Gradient Boosted Regression Trees in scikit-learn
 
Still works
Still worksStill works
Still works
 
Efficient end-to-end learning for quantizable representations
Efficient end-to-end learning for quantizable representationsEfficient end-to-end learning for quantizable representations
Efficient end-to-end learning for quantizable representations
 

Similar to 從行動廣告大數據觀點談 Big data 20150916

A Workshop on R
A Workshop on RA Workshop on R
A Workshop on RAjay Ohri
 
Migrating from matlab to python
Migrating from matlab to pythonMigrating from matlab to python
Migrating from matlab to pythonActiveState
 
R for Pirates. ESCCONF October 27, 2011
R for Pirates. ESCCONF October 27, 2011R for Pirates. ESCCONF October 27, 2011
R for Pirates. ESCCONF October 27, 2011Mandi Walls
 
SQLBits Module 2 RStats Introduction to R and Statistics
SQLBits Module 2 RStats Introduction to R and StatisticsSQLBits Module 2 RStats Introduction to R and Statistics
SQLBits Module 2 RStats Introduction to R and StatisticsJen Stirrup
 
Types Working for You, Not Against You
Types Working for You, Not Against YouTypes Working for You, Not Against You
Types Working for You, Not Against YouC4Media
 
Introduction to R for data science
Introduction to R for data scienceIntroduction to R for data science
Introduction to R for data scienceLong Nguyen
 
SMS Spam Filter Design Using R: A Machine Learning Approach
SMS Spam Filter Design Using R: A Machine Learning ApproachSMS Spam Filter Design Using R: A Machine Learning Approach
SMS Spam Filter Design Using R: A Machine Learning ApproachReza Rahimi
 
An R primer for SQL folks
An R primer for SQL folksAn R primer for SQL folks
An R primer for SQL folksThomas Hütter
 
managing big data
managing big datamanaging big data
managing big dataSuveeksha
 
Graph database Use Cases
Graph database Use CasesGraph database Use Cases
Graph database Use CasesMax De Marzi
 
Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015StampedeCon
 
Grill at bigdata-cloud conf
Grill at bigdata-cloud confGrill at bigdata-cloud conf
Grill at bigdata-cloud confamarsri
 
Ayudando a los Viajeros usando 500 millones de Reseñas Hoteleras al Mes
Ayudando a los Viajeros usando 500 millones de Reseñas Hoteleras al MesAyudando a los Viajeros usando 500 millones de Reseñas Hoteleras al Mes
Ayudando a los Viajeros usando 500 millones de Reseñas Hoteleras al MesBig Data Colombia
 
Training in Analytics, R and Social Media Analytics
Training in Analytics, R and Social Media AnalyticsTraining in Analytics, R and Social Media Analytics
Training in Analytics, R and Social Media AnalyticsAjay Ohri
 
Sea Amsterdam 2014 November 19
Sea Amsterdam 2014 November 19Sea Amsterdam 2014 November 19
Sea Amsterdam 2014 November 19GoDataDriven
 

Similar to 從行動廣告大數據觀點談 Big data 20150916 (20)

A Workshop on R
A Workshop on RA Workshop on R
A Workshop on R
 
R and Data Science
R and Data ScienceR and Data Science
R and Data Science
 
Migrating from matlab to python
Migrating from matlab to pythonMigrating from matlab to python
Migrating from matlab to python
 
R for Pirates. ESCCONF October 27, 2011
R for Pirates. ESCCONF October 27, 2011R for Pirates. ESCCONF October 27, 2011
R for Pirates. ESCCONF October 27, 2011
 
SQLBits Module 2 RStats Introduction to R and Statistics
SQLBits Module 2 RStats Introduction to R and StatisticsSQLBits Module 2 RStats Introduction to R and Statistics
SQLBits Module 2 RStats Introduction to R and Statistics
 
Types Working for You, Not Against You
Types Working for You, Not Against YouTypes Working for You, Not Against You
Types Working for You, Not Against You
 
Introduction to R for data science
Introduction to R for data scienceIntroduction to R for data science
Introduction to R for data science
 
SMS Spam Filter Design Using R: A Machine Learning Approach
SMS Spam Filter Design Using R: A Machine Learning ApproachSMS Spam Filter Design Using R: A Machine Learning Approach
SMS Spam Filter Design Using R: A Machine Learning Approach
 
An R primer for SQL folks
An R primer for SQL folksAn R primer for SQL folks
An R primer for SQL folks
 
managing big data
managing big datamanaging big data
managing big data
 
Graph database Use Cases
Graph database Use CasesGraph database Use Cases
Graph database Use Cases
 
Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015
 
Grill at bigdata-cloud conf
Grill at bigdata-cloud confGrill at bigdata-cloud conf
Grill at bigdata-cloud conf
 
Hadoop london
Hadoop londonHadoop london
Hadoop london
 
R training2
R training2R training2
R training2
 
Ayudando a los Viajeros usando 500 millones de Reseñas Hoteleras al Mes
Ayudando a los Viajeros usando 500 millones de Reseñas Hoteleras al MesAyudando a los Viajeros usando 500 millones de Reseñas Hoteleras al Mes
Ayudando a los Viajeros usando 500 millones de Reseñas Hoteleras al Mes
 
Training in Analytics, R and Social Media Analytics
Training in Analytics, R and Social Media AnalyticsTraining in Analytics, R and Social Media Analytics
Training in Analytics, R and Social Media Analytics
 
R programming by ganesh kavhar
R programming by ganesh kavharR programming by ganesh kavhar
R programming by ganesh kavhar
 
Ggplot2 v3
Ggplot2 v3Ggplot2 v3
Ggplot2 v3
 
Sea Amsterdam 2014 November 19
Sea Amsterdam 2014 November 19Sea Amsterdam 2014 November 19
Sea Amsterdam 2014 November 19
 

More from Craig Chao

人工智慧與物聯網的創新與服務模式
人工智慧與物聯網的創新與服務模式人工智慧與物聯網的創新與服務模式
人工智慧與物聯網的創新與服務模式Craig Chao
 
從新一波人工智慧與大數據浪潮看「不當行為」
從新一波人工智慧與大數據浪潮看「不當行為」從新一波人工智慧與大數據浪潮看「不當行為」
從新一波人工智慧與大數據浪潮看「不當行為」Craig Chao
 
Ai 管理人看人工智慧、發展與應用變革
Ai 管理人看人工智慧、發展與應用變革Ai 管理人看人工智慧、發展與應用變革
Ai 管理人看人工智慧、發展與應用變革Craig Chao
 
Build a deep learning pipeline on apache spark for ads optimization
Build a deep learning pipeline on apache spark for ads optimizationBuild a deep learning pipeline on apache spark for ads optimization
Build a deep learning pipeline on apache spark for ads optimizationCraig Chao
 
The sharing economy matchmaker-chinese-20170409
The sharing economy matchmaker-chinese-20170409The sharing economy matchmaker-chinese-20170409
The sharing economy matchmaker-chinese-20170409Craig Chao
 
Ai plus-ai intro 02-20170605
Ai plus-ai intro 02-20170605Ai plus-ai intro 02-20170605
Ai plus-ai intro 02-20170605Craig Chao
 
AI and its revolution
AI and its revolutionAI and its revolution
AI and its revolutionCraig Chao
 
Key Failure Factors of Building a Data Science Team
Key Failure Factors of Building a Data Science TeamKey Failure Factors of Building a Data Science Team
Key Failure Factors of Building a Data Science TeamCraig Chao
 
Business Opportunities, Challenges, Strategies and Execution in Big Data Era ...
Business Opportunities, Challenges, Strategies and Execution in Big Data Era...Business Opportunities, Challenges, Strategies and Execution in Big Data Era...
Business Opportunities, Challenges, Strategies and Execution in Big Data Era ...Craig Chao
 
行動廣告與大數據資料分析策略與執行
行動廣告與大數據資料分析策略與執行行動廣告與大數據資料分析策略與執行
行動廣告與大數據資料分析策略與執行Craig Chao
 

More from Craig Chao (10)

人工智慧與物聯網的創新與服務模式
人工智慧與物聯網的創新與服務模式人工智慧與物聯網的創新與服務模式
人工智慧與物聯網的創新與服務模式
 
從新一波人工智慧與大數據浪潮看「不當行為」
從新一波人工智慧與大數據浪潮看「不當行為」從新一波人工智慧與大數據浪潮看「不當行為」
從新一波人工智慧與大數據浪潮看「不當行為」
 
Ai 管理人看人工智慧、發展與應用變革
Ai 管理人看人工智慧、發展與應用變革Ai 管理人看人工智慧、發展與應用變革
Ai 管理人看人工智慧、發展與應用變革
 
Build a deep learning pipeline on apache spark for ads optimization
Build a deep learning pipeline on apache spark for ads optimizationBuild a deep learning pipeline on apache spark for ads optimization
Build a deep learning pipeline on apache spark for ads optimization
 
The sharing economy matchmaker-chinese-20170409
The sharing economy matchmaker-chinese-20170409The sharing economy matchmaker-chinese-20170409
The sharing economy matchmaker-chinese-20170409
 
Ai plus-ai intro 02-20170605
Ai plus-ai intro 02-20170605Ai plus-ai intro 02-20170605
Ai plus-ai intro 02-20170605
 
AI and its revolution
AI and its revolutionAI and its revolution
AI and its revolution
 
Key Failure Factors of Building a Data Science Team
Key Failure Factors of Building a Data Science TeamKey Failure Factors of Building a Data Science Team
Key Failure Factors of Building a Data Science Team
 
Business Opportunities, Challenges, Strategies and Execution in Big Data Era ...
Business Opportunities, Challenges, Strategies and Execution in Big Data Era...Business Opportunities, Challenges, Strategies and Execution in Big Data Era...
Business Opportunities, Challenges, Strategies and Execution in Big Data Era ...
 
行動廣告與大數據資料分析策略與執行
行動廣告與大數據資料分析策略與執行行動廣告與大數據資料分析策略與執行
行動廣告與大數據資料分析策略與執行
 

Recently uploaded

ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Cantervoginip
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...limedy534
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfBoston Institute of Analytics
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]📊 Markus Baersch
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queensdataanalyticsqueen03
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Colleen Farrelly
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptxthyngster
 
办理(UWIC毕业证书)英国卡迪夫城市大学毕业证成绩单原版一比一
办理(UWIC毕业证书)英国卡迪夫城市大学毕业证成绩单原版一比一办理(UWIC毕业证书)英国卡迪夫城市大学毕业证成绩单原版一比一
办理(UWIC毕业证书)英国卡迪夫城市大学毕业证成绩单原版一比一F La
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一fhwihughh
 
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxNLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxBoston Institute of Analytics
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...Boston Institute of Analytics
 

Recently uploaded (20)

ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Canter
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queens
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
 
办理(UWIC毕业证书)英国卡迪夫城市大学毕业证成绩单原版一比一
办理(UWIC毕业证书)英国卡迪夫城市大学毕业证成绩单原版一比一办理(UWIC毕业证书)英国卡迪夫城市大学毕业证成绩单原版一比一
办理(UWIC毕业证书)英国卡迪夫城市大学毕业证成绩单原版一比一
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
 
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxNLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
NLP Data Science Project Presentation:Predicting Heart Disease with NLP Data ...
 

從行動廣告大數據觀點談 Big data 20150916

Editor's Notes

  1. Tags: 品友CEO說 DSP 有 8 人團隊, CTO 來自 BlueKai – DMP 腦波分析的 Stat + MLDM 選擇商業?!希望家人朋友聽得懂我在做什麼,有用到! 學會! 然後放下,才能更多更大!
  2. 氣候:颱風天的轉化率特別好!
  3. Jawbone:
  4. Data is blood of enterprise! 不單純以自我的興趣、專長為思考,而是以企業的最大效益!