SlideShare una empresa de Scribd logo
1 de 59
Descargar para leer sin conexión
Recommendation	101
using	Hivemall
Research	Engineer
Makoto	YUI	@myui
<myui@treasure-data.com>
1
2016/04/25
Treasure	Data	Techtalk
Ø 2015.04	Joined	Treasure	Data,	Inc.
1st Research	Engineer	in	Treasure	Data
Ø 2010.04-2015.03	Senior	Researcher	at	National	
Institute	of	Advanced	Industrial	Science	and	
Technology,	Japan.	
Ø 2009.03	Ph.D.	in	Computer	Science	from	NAIST
Ø TD登山部部長
Ø 部員3名(うち幽霊部員1名)
Who	am		I	?
2
Ø 2015.04	Joined	Treasure	Data,	Inc.
1st Research	Engineer	in	Treasure	Data
Ø 2010.04-2015.03	Senior	Researcher	at	National	
Institute	of	Advanced	Industrial	Science	and	
Technology,	Japan.	
Ø 2009.03	Ph.D.	in	Computer	Science	from	NAIST
Ø TD登山部部長
Ø 部員3名(うち幽霊部員1名)
Who	am		I	?
3
Agenda
1. Short	Introduction	to	Hivemall
2. Recommendation	101
3. Matrix	Factorization
4. Factorization	Machines
5. Bayesian	Probabilistic	Ranking
6. Conclusion
4
What	is	Hivemall
Scalable	machine	learning	library	built	
as	a	collection	of	Hive	UDFs,	licensed	
under	the	Apache	License	v2
5
https://github.com/myui/hivemall
Hivemall’s Vision:	ML	on	SQL
Classification	with	Mahout
CREATE	TABLE	lr_model	AS
SELECT
feature,	-- reducers	perform	model	averaging	in	
parallel
avg(weight)	as	weight
FROM	(
SELECT	logress(features,label,..)	as	(feature,weight)
FROM	train
)	t	-- map-only	task
GROUP	BY	feature;	-- shuffled	to	reducers
✓Machine	Learning	made	easy	for	SQL	
developers	(ML	for	the	rest	of	us)
✓Interactive	and	Stable	APIs	w/ SQL	abstraction
This	SQL	query	automatically	runs	in	
parallel	on	Hadoop	
6
Ø CTR	prediction	of	Ad	click	logs
•Freakout Inc.,	Fan	communication,	and	more
•Replaced	Spark	MLlib	w/	Hivemall	at	company	X
Industry	use	cases	of	Hivemall
7
http://www.slideshare.net/masakazusano75/sano-hmm-20150512
8
ØGender	prediction	of	Ad	click	logs
•Scaleout Inc.	and	Fan	commucations
http://eventdots.jp/eventreport/458208
Industry	use	cases	of	Hivemall
9
Industry	use	cases	of	Hivemall
Ø Value	prediction	of	Real	estates
•Livesense
http://www.slideshare.net/y-ken/real-estate-tech-with-hivemall
10Source:	http://itnp.net/article/2016/02/18/2286.html
Industry	use	cases	of	Hivemall
11
ØChurn	Detection
•OISIX
Industry	use	cases	of	Hivemall
http://www.slideshare.net/TaisukeFukawa/hivemall-meetup-vol2-oisix
12
会員サービスの解約予測
•10万人の会員による定期購
買が会社全体の売上、利益を
左右するが、解約リスクのあ
る会員を事前に把握、防止す
る策を欠いていた
•統計の専門知識無しで機械学習
•解約予測リストへのポイント付
与により解約率が半減
•解約リスクを伴う施策、イベン
トを炙り出すと同時に、非解約
者の特徴的な行動も把握可能に
•リスク度合いに応じて UI を変
更するなど間接的なサービス改
善も実現
•機械学習を行い、過去1ヶ月間
のデータをもとに未来1ヶ月間
に解約する可能性の高い顧客リ
ストを作成
•具体的には、学習用テーブル作
成 -> 正規化 -> 学習モデル作成
-> ロジスティック回帰の各ス
テップをTD + Hivemall を用い
てクエリで簡便に実現
Web
Mobile
属性情報
行動ログ
クレーム情報
流入元
利用サービス情報
直接施策
間接施策
ポイント付与 ケアコール
成功体験への誘導UI	変更
予測に使うデータ
13
ØRecommendation
•Portal	site
Industry	use	cases	of	Hivemall
List	of	Features	in	Hivemall	v0.3.x
Classification(both	
binary- and	multi-class)
✓ Perceptron
✓ Passive	Aggressive	(PA)
✓ Confidence	Weighted	(CW)
✓ Adaptive	Regularization	of	
Weight	Vectors	(AROW)
✓ Soft	Confidence	Weighted	
(SCW)
✓AdaGrad+RDA
Regression
✓Logistic	Regression	(SGD)
✓PA	Regression
✓AROW	Regression
✓AdaGrad
✓AdaDELTA
kNN and	Recommendation
✓ Minhash and	b-Bit	Minhash
(LSH	variant)
✓ Similarity	 Search	using	K-NN
(Euclid/Cosine/Jaccard/Angular)
✓ Matrix	Factorization
Feature	engineering
✓ Feature	Hashing
✓ Feature	Scaling
(normalization,	 z-score)	
✓TF-IDF	vectorizer
✓Polynomial	Expansion
Anomaly	Detection
✓ Local	Outlier	Factor
Top-k	query	processing
14
Features supported	in	Hivemall	v0.4.0
15
1.RandomForest
• classification,	regression
2.Factorization	Machine
• classification,	regression	(factorization)
Features supported	in	Hivemall	v0.4.1-alpha
16
1. NLP	Tokenizer (形態素解析)
• Kuromoji
2. Mini-batch	Gradient	Descent
3. RandomForest scalability	Improvements
Treasure	Data	is	operating
Hivemall	v0.4.1-alpha.6
The	above	feature	are	already	supported
Features supported	in	Hivemall	v0.4.1
17
1. Matrix	Factorization	for	Implicit	Feedback
2. Field-aware	Factorization	Machines
V0.4.1-RC1	will	be	released	soon!
Agenda
1. Short	Introduction	to	Hivemall
2. Recommendation	101
3. Matrix	Factorization
4. Factorization	Machines
5. Bayesian	Probabilistic	Ranking
6. Conclusion
18
19
Recommendation
20
If	I	have	3	million	customers	on	the	Web,	
I	should	have	3	million	stores	on	the	Web	
Jeff	Bezos,	CEO	of	Amazon.com
Quote about	Recommendation
•Explicit	Feedback 明示的
• Item	Rating
• Item	Ranking
•Implicit	Feedback	暗黙的
• Positive-only	Implicit	Feedback
• Bought	(or	not)	
• Click	(or	not)
• Converged	(or	not)
21
Recommendation	101
•Explicit	Feedback 明示的
• Item	Rating
• Item	Ranking
•Implicit	Feedback	暗黙的
• Positive-only	Implicit	Feedback
• Bought	(or	not)	
• Click	(or	not)
• Converged	(or	not)
22
Recommendation	101
評価用のPublicデータセットが存在し
サンプルやTutorial記事も多い
•Explicit	Feedback 明示的
• Item	Rating
• Item	Ranking
•Implicit	Feedback	暗黙的
• Positive-only	Implicit	Feedback
• Bought	(or	not)	
• Click	(or	not)
• Converged	(or	not)
23
Recommendation	101
対応しているライブラリが少なく
サンプルが少ない
U/I Item	1 Item	2 Item	3 … Item	I
User	1 5 3
User	2 2 1
… 3 4
User	U 1 4 5
24
Explicit	Feedback
U/I Item	1 Item	2 Item	3 … Item	I
User	1 ? 5 ? ? 3
User	2 2 ? 1 ? ?
… ? 3 ? 4 ?
User	U 1 ? 4 ? 5
25
Explicit	Feedback
26
Explicit	Feedback
U/I Item	1 Item	2 Item	3 … Item	I
User	1 ? 5 ? ? 3
User	2 2 ? 1 ? ?
… ? 3 ? 4 ?
User	U 1 ? 4 ? 5
• Very	Sparse	Dataset
• #	of	feedback	is	small
• Unknown	data	>>	Training	data
• User	preference	to	rated	items	is	clear
• Has	negative	feedbacks
• Evaluation	is	easy	(MAE/RMSE)
U/I Item	1 Item	2 Item	3 … Item	I
User	1 ⭕ ⭕
User	2 ⭕ ⭕
… ⭕ ⭕
User	U ⭕ ⭕ ⭕
27
Implicit	Feedback
U/I Item	1 Item	2 Item	3 … Item	I
User	1 ⭕ ⭕
User	2 ⭕ ⭕
… ⭕ ⭕
User	U ⭕ ⭕ ⭕
28
Implicit	Feedback
• Sparse	Dataset
• Number	of	Feedbacks	are	large
• User	preference	is	unclear
• No negative feedback
• Known feedback maybe negative
• Unknown	feedback	maybe	positive
• Evaluation	is	not	so	easy	(NDCG,	Prec@K,	Recall@K)
29
Pros	and	Cons
Explicit
Feedback
Implicit	
Feedback
Data	size L J
User preference J L
Dislike/Unknown J L
Impact of	Bias L J
Agenda
1. Short	Introduction	to	Hivemall
2. Recommendation	101
3. Matrix	Factorization
4. Factorization	Machines
5. Bayesian	Probabilistic	Ranking
6. Conclusion
30
31
Matrix	Factorization/Completion
Factorize	a	matrix	
into	a	product	of	matrices
having	k-latent	factor
K個の潜在変数
32
Matrix	Completion How-to
• Mean	Rating	μ
• Rating	Bias	for	each	Item Bi
• Rating	Bias	for	each	User	Bu
33
Mean	Rating
Matrix	Factorization
Regularization
Bias	
for	each	user/item
Criteria	of	Biased	MF
Factorization
Diff	in	prediction
34
Training	of	Matrix	Factorization
Support iterative training using local disk cache
35
Prediction	of	Matrix	Factorization
Agenda
1. Short	Introduction	to	Hivemall
2. Recommendation	101
3. Matrix	Factorization
4. Factorization	Machines
5. Bayesian	Probabilistic	Ranking
6. Conclusion
36
37
Factorization	Machine
Matrix	Factorization
38
Factorization	Machine
Context	information	(e.g.,	time)	
can	be	considered
Source:	http://www.ismll.uni-hildesheim.de/pub/pdfs/Rendle2010FM.pdf
39
Factorization	Machine
Factorization	Model	with	degress=2	(2-way	interaction)
Global	Bias
Regression	coefficience
of	j-th variable
Pairwise	Interaction
Factorization
40
Training	data	for	Factorization	Machines
Each	Feature	takes	LibSVM-like	format	<feature[:weight]>
41
Training	of	Factorization	Machines
42
Prediction	of	Factorization	Machines
Agenda
1. Short	Introduction	to	Hivemall
2. Recommendation	101
3. Matrix	Factorization
4. Factorization	Machines
5. Bayesian	Probabilistic	Ranking
6. Conclusion
43
44
Implicit	Feedback
A	naïve	L approach	by	filling	unknown	cell	
as	negative
45
Sampling	scheme	for	Implicit	Feedback
Sample	pairs	<u,	i,	j>	of	Positive	Item	i and	
Negative	Item j	for	each	User	u
• Uniform	user	sampling
Ø Sample	a	user.	Then,	sample	a	pair.
• Uniform	pair	sampling
Ø Sample	pairs	directory	(dist.	along	w/	original	dataset)
• With-replacement	or	without-replacement	sampling
U/I Item	1 Item	2 Item	3 … Item	I
User	1 ⭕ ⭕
User	2 ⭕ ⭕
… ⭕ ⭕
User	U ⭕ ⭕ ⭕
Default	Hivemall	sampling	
scheme:
- Uniform	user	sampling
- With	replacement
•Rendle et	al.,	“BPR:	Bayesian	Personalized	Ranking	
from	Implicit	Feedback”,	Proc.	UAI,	2009.
•A	most	proven(?)	algorithm	for	recommendation	for	
implicit	feedback
46
Bayesian	Probabilistic	Ranking
Key	assumption:	user	u prefers	item	i over	non-
observed	item j
Bayesian	Probabilistic	Ranking
47
Image	taken	from	
Rendle et	al.,	“BPR:	Bayesian	Personalized	Ranking	from	Implicit	Feedback”,	Proc.	UAI,	2009.
48
Bayesian	Theorem
ベイズの定理:	事後確率は尤度と事前確率の積に比例
ここで、Θは求めたいパラメタ
>uはユーザuの好みの構造
ユーザuの好みの構造 >u が与えられたときの
モデルパラメタΘの事後分布P(Θ|>u)を得たい
49
Bayesian	Probabilistic	Ranking
√
尤度
簡単のためにユーザの好み>uは互いに独立であるとして
p(i >u	j|Θ)の直積で表現.	次のように尤度を定義
u,i,jを入力とした予測値にsigmoid関数を適用
𝐵𝑃𝑅𝑂𝑃𝑇 = max
*
ln 𝑝 >/ |Θ 𝑝 Θ
50
Bayesian	Probabilistic	Ranking
= max
*
2 ln 𝜎(𝑥/567 (Θ)) − 𝜆 | 𝜎 |<
/,5,6 ∈?
√
√
√
ln	sigmoid
for	loss	function
正則化
Train	by	BPR-Matrix	Factoriaztion
51
52
Predict	by	BPR-Matrix	Factorization
53
Predict	by	BPR-Matrix	Factorization
54
Predict	by	BPR-Matrix	Factorization
55
Recommendation	for	Implicit	Feedback	Dataset
1. Efficient	Top-k	computation	is	important	
for	prediction O(U	*	I)
2. Memory	consumption	is	heavy	for	where	
item	size	|i|	is	large
• MyMediaLite requires	lots	of	memory
• Maximum	data	size	of	Movielens:	33,000	
movies	by	240,000	users,	20	million	ratings
3. Better	to	avoid	computing	predictions	for	
each	time
Agenda
1. Short	Introduction	to	Hivemall
2. Recommendation	101
3. Matrix	Factorization
4. Factorization	Machines
5. Bayesian	Probabilistic	Ranking
6. Conclusion
56
Conclusion	and	Takeaway
57
Hivemall	provides	a	collection	of	machine	
learning	algorithms	as	Hive	UDFs/UDTFs
Treasure	Data	provides	ML-as-a-Service	
using	latest	version	of	Hivemall
• BPR-MF	and	BPR-FM	(?)	for	Implicit	Feedback
• Evaluation	metric	(NDCG,	Prec/Recall@k)
• Field-aware	Factorization	Machine
• One-class	Passive	Aggressive
• (Kernelized Passive	Aggressive)
Major	features	in	the	coming	v0.4.1
58
Blog	article	about	Hivemall
http://blog-jp.treasuredata.com/
TD,	Hivemall,	Jupyter,	Pandas-TDを使ってKaggleの
課題を解くシリーズ
59
We	support	machine	learning	in	Cloud
Any	feature	request?	Or,	questions?

Más contenido relacionado

La actualidad más candente

PR-190: A Baseline For Detecting Misclassified and Out-of-Distribution Examp...
PR-190: A Baseline For Detecting Misclassified and Out-of-Distribution  Examp...PR-190: A Baseline For Detecting Misclassified and Out-of-Distribution  Examp...
PR-190: A Baseline For Detecting Misclassified and Out-of-Distribution Examp...강민국 강민국
 
Esthetic crowns for posterior primary teeth
Esthetic crowns for posterior primary teethEsthetic crowns for posterior primary teeth
Esthetic crowns for posterior primary teethSung-Ki Kim
 
正規表現入門 星の高さを求めて
正規表現入門 星の高さを求めて正規表現入門 星の高さを求めて
正規表現入門 星の高さを求めてRyoma Sin'ya
 
機械学習モデルの列挙
機械学習モデルの列挙機械学習モデルの列挙
機械学習モデルの列挙Satoshi Hara
 
SSII2020 [OS2-03] 深層学習における半教師あり学習の最新動向
SSII2020 [OS2-03] 深層学習における半教師あり学習の最新動向SSII2020 [OS2-03] 深層学習における半教師あり学習の最新動向
SSII2020 [OS2-03] 深層学習における半教師あり学習の最新動向SSII
 
Prosthetic management of glossectomy/cosmetic dentistry courses
Prosthetic management of glossectomy/cosmetic dentistry coursesProsthetic management of glossectomy/cosmetic dentistry courses
Prosthetic management of glossectomy/cosmetic dentistry coursesIndian dental academy
 
辞書ベースのテキストマイニング ML-Ask, J-LIWC, J-MDFを例として
辞書ベースのテキストマイニング ML-Ask, J-LIWC, J-MDFを例として辞書ベースのテキストマイニング ML-Ask, J-LIWC, J-MDFを例として
辞書ベースのテキストマイニング ML-Ask, J-LIWC, J-MDFを例としてTokyo Tech
 
Principles of endodontic treatment
Principles of endodontic treatment Principles of endodontic treatment
Principles of endodontic treatment Noreen Qazi
 
「はじめてでもわかる RandomForest 入門-集団学習による分類・予測 -」 -第7回データマイニング+WEB勉強会@東京
「はじめてでもわかる RandomForest 入門-集団学習による分類・予測 -」 -第7回データマイニング+WEB勉強会@東京「はじめてでもわかる RandomForest 入門-集団学習による分類・予測 -」 -第7回データマイニング+WEB勉強会@東京
「はじめてでもわかる RandomForest 入門-集団学習による分類・予測 -」 -第7回データマイニング+WEB勉強会@東京Koichi Hamada
 
Optunaを使ったHuman-in-the-loop最適化の紹介 - 2023/04/27 W&B 東京ミートアップ #3
Optunaを使ったHuman-in-the-loop最適化の紹介 - 2023/04/27 W&B 東京ミートアップ #3Optunaを使ったHuman-in-the-loop最適化の紹介 - 2023/04/27 W&B 東京ミートアップ #3
Optunaを使ったHuman-in-the-loop最適化の紹介 - 2023/04/27 W&B 東京ミートアップ #3Preferred Networks
 
リクルート式 自然言語処理技術の適応事例紹介
リクルート式 自然言語処理技術の適応事例紹介リクルート式 自然言語処理技術の適応事例紹介
リクルート式 自然言語処理技術の適応事例紹介Recruit Technologies
 
レコメンドアルゴリズムの基本と周辺知識と実装方法
レコメンドアルゴリズムの基本と周辺知識と実装方法レコメンドアルゴリズムの基本と周辺知識と実装方法
レコメンドアルゴリズムの基本と周辺知識と実装方法Takeshi Mikami
 
マルチモーダル深層学習の研究動向
マルチモーダル深層学習の研究動向マルチモーダル深層学習の研究動向
マルチモーダル深層学習の研究動向Koichiro Mori
 
音源分離 ~DNN音源分離の基礎から最新技術まで~ Tokyo bishbash #3
音源分離 ~DNN音源分離の基礎から最新技術まで~ Tokyo bishbash #3音源分離 ~DNN音源分離の基礎から最新技術まで~ Tokyo bishbash #3
音源分離 ~DNN音源分離の基礎から最新技術まで~ Tokyo bishbash #3Naoya Takahashi
 
WEDGES & MATRIX II YR.pptx
WEDGES & MATRIX II YR.pptxWEDGES & MATRIX II YR.pptx
WEDGES & MATRIX II YR.pptxDrManjiriHonap
 
Deep Learning技術の今
Deep Learning技術の今Deep Learning技術の今
Deep Learning技術の今Seiya Tokui
 

La actualidad más candente (20)

PR-190: A Baseline For Detecting Misclassified and Out-of-Distribution Examp...
PR-190: A Baseline For Detecting Misclassified and Out-of-Distribution  Examp...PR-190: A Baseline For Detecting Misclassified and Out-of-Distribution  Examp...
PR-190: A Baseline For Detecting Misclassified and Out-of-Distribution Examp...
 
Esthetic crowns for posterior primary teeth
Esthetic crowns for posterior primary teethEsthetic crowns for posterior primary teeth
Esthetic crowns for posterior primary teeth
 
正規表現入門 星の高さを求めて
正規表現入門 星の高さを求めて正規表現入門 星の高さを求めて
正規表現入門 星の高さを求めて
 
機械学習モデルの列挙
機械学習モデルの列挙機械学習モデルの列挙
機械学習モデルの列挙
 
BERT入門
BERT入門BERT入門
BERT入門
 
SSII2020 [OS2-03] 深層学習における半教師あり学習の最新動向
SSII2020 [OS2-03] 深層学習における半教師あり学習の最新動向SSII2020 [OS2-03] 深層学習における半教師あり学習の最新動向
SSII2020 [OS2-03] 深層学習における半教師あり学習の最新動向
 
Prosthetic management of glossectomy/cosmetic dentistry courses
Prosthetic management of glossectomy/cosmetic dentistry coursesProsthetic management of glossectomy/cosmetic dentistry courses
Prosthetic management of glossectomy/cosmetic dentistry courses
 
辞書ベースのテキストマイニング ML-Ask, J-LIWC, J-MDFを例として
辞書ベースのテキストマイニング ML-Ask, J-LIWC, J-MDFを例として辞書ベースのテキストマイニング ML-Ask, J-LIWC, J-MDFを例として
辞書ベースのテキストマイニング ML-Ask, J-LIWC, J-MDFを例として
 
Non carious lesions
Non carious lesionsNon carious lesions
Non carious lesions
 
Principles of endodontic treatment
Principles of endodontic treatment Principles of endodontic treatment
Principles of endodontic treatment
 
「はじめてでもわかる RandomForest 入門-集団学習による分類・予測 -」 -第7回データマイニング+WEB勉強会@東京
「はじめてでもわかる RandomForest 入門-集団学習による分類・予測 -」 -第7回データマイニング+WEB勉強会@東京「はじめてでもわかる RandomForest 入門-集団学習による分類・予測 -」 -第7回データマイニング+WEB勉強会@東京
「はじめてでもわかる RandomForest 入門-集団学習による分類・予測 -」 -第7回データマイニング+WEB勉強会@東京
 
モデルベース協調フィルタリングにおける推薦の透明性に関する検討
モデルベース協調フィルタリングにおける推薦の透明性に関する検討モデルベース協調フィルタリングにおける推薦の透明性に関する検討
モデルベース協調フィルタリングにおける推薦の透明性に関する検討
 
Optunaを使ったHuman-in-the-loop最適化の紹介 - 2023/04/27 W&B 東京ミートアップ #3
Optunaを使ったHuman-in-the-loop最適化の紹介 - 2023/04/27 W&B 東京ミートアップ #3Optunaを使ったHuman-in-the-loop最適化の紹介 - 2023/04/27 W&B 東京ミートアップ #3
Optunaを使ったHuman-in-the-loop最適化の紹介 - 2023/04/27 W&B 東京ミートアップ #3
 
リクルート式 自然言語処理技術の適応事例紹介
リクルート式 自然言語処理技術の適応事例紹介リクルート式 自然言語処理技術の適応事例紹介
リクルート式 自然言語処理技術の適応事例紹介
 
レコメンドアルゴリズムの基本と周辺知識と実装方法
レコメンドアルゴリズムの基本と周辺知識と実装方法レコメンドアルゴリズムの基本と周辺知識と実装方法
レコメンドアルゴリズムの基本と周辺知識と実装方法
 
マルチモーダル深層学習の研究動向
マルチモーダル深層学習の研究動向マルチモーダル深層学習の研究動向
マルチモーダル深層学習の研究動向
 
Direct Retainers
Direct RetainersDirect Retainers
Direct Retainers
 
音源分離 ~DNN音源分離の基礎から最新技術まで~ Tokyo bishbash #3
音源分離 ~DNN音源分離の基礎から最新技術まで~ Tokyo bishbash #3音源分離 ~DNN音源分離の基礎から最新技術まで~ Tokyo bishbash #3
音源分離 ~DNN音源分離の基礎から最新技術まで~ Tokyo bishbash #3
 
WEDGES & MATRIX II YR.pptx
WEDGES & MATRIX II YR.pptxWEDGES & MATRIX II YR.pptx
WEDGES & MATRIX II YR.pptx
 
Deep Learning技術の今
Deep Learning技術の今Deep Learning技術の今
Deep Learning技術の今
 

Similar a Tdtechtalk20160425myui

Recommendation 101 using Hivemall
Recommendation 101 using HivemallRecommendation 101 using Hivemall
Recommendation 101 using HivemallMakoto Yui
 
Introduction to New features and Use cases of Hivemall
Introduction to New features and Use cases of HivemallIntroduction to New features and Use cases of Hivemall
Introduction to New features and Use cases of HivemallTreasure Data, Inc.
 
Tdtechtalk20160330myui
Tdtechtalk20160330myuiTdtechtalk20160330myui
Tdtechtalk20160330myuiMakoto Yui
 
Machine Learning for Molecules: Lessons and Challenges of Data-Centric Chemistry
Machine Learning for Molecules: Lessons and Challenges of Data-Centric ChemistryMachine Learning for Molecules: Lessons and Challenges of Data-Centric Chemistry
Machine Learning for Molecules: Lessons and Challenges of Data-Centric ChemistryIchigaku Takigawa
 
Doing Analytics Right - Building the Analytics Environment
Doing Analytics Right - Building the Analytics EnvironmentDoing Analytics Right - Building the Analytics Environment
Doing Analytics Right - Building the Analytics EnvironmentTasktop
 
2nd Hivemall meetup 20151020
2nd Hivemall meetup 201510202nd Hivemall meetup 20151020
2nd Hivemall meetup 20151020Makoto Yui
 
OPERATION ANALYTICS AND INVESTIGATING METRIC SPIKE.pptx
OPERATION ANALYTICS AND INVESTIGATING METRIC SPIKE.pptxOPERATION ANALYTICS AND INVESTIGATING METRIC SPIKE.pptx
OPERATION ANALYTICS AND INVESTIGATING METRIC SPIKE.pptxshariqbhat1
 
313 IDS _Course_Introduction_PPT.pptx
313 IDS _Course_Introduction_PPT.pptx313 IDS _Course_Introduction_PPT.pptx
313 IDS _Course_Introduction_PPT.pptxsameernsn1
 
Data+Science+in+Python+-+Data+Prep+&+EDA.pdf
Data+Science+in+Python+-+Data+Prep+&+EDA.pdfData+Science+in+Python+-+Data+Prep+&+EDA.pdf
Data+Science+in+Python+-+Data+Prep+&+EDA.pdfneelakandan2001kpm
 
Why To Learn Data Science.pptx
Why To Learn Data Science.pptxWhy To Learn Data Science.pptx
Why To Learn Data Science.pptxCETPA INFOTECH
 
Copyright © 2012 EMC Corporation. All Rights Reserved. EMC.docx
Copyright © 2012 EMC Corporation. All Rights Reserved. EMC.docxCopyright © 2012 EMC Corporation. All Rights Reserved. EMC.docx
Copyright © 2012 EMC Corporation. All Rights Reserved. EMC.docxbobbywlane695641
 
IAT334-Lec08-Experiment.pptx
IAT334-Lec08-Experiment.pptxIAT334-Lec08-Experiment.pptx
IAT334-Lec08-Experiment.pptxssuseraae9cd
 
Design Thinking Approach for IT in Business
Design Thinking Approach for IT in BusinessDesign Thinking Approach for IT in Business
Design Thinking Approach for IT in BusinessO' Neil Lim
 
楽天における機械学習アルゴリズムの活用
楽天における機械学習アルゴリズムの活用楽天における機械学習アルゴリズムの活用
楽天における機械学習アルゴリズムの活用Rakuten Group, Inc.
 
Operation Research VS Software Engineering
Operation Research VS Software EngineeringOperation Research VS Software Engineering
Operation Research VS Software EngineeringMuthuganesh S
 
Curriculum Vitae of Ramadiansyah
Curriculum Vitae of RamadiansyahCurriculum Vitae of Ramadiansyah
Curriculum Vitae of RamadiansyahRama Diansyah
 
IRJET- Sentimental Analysis from Tweets to Find Positive, Negative,Neutra...
IRJET-  	  Sentimental Analysis from Tweets to Find Positive, Negative,Neutra...IRJET-  	  Sentimental Analysis from Tweets to Find Positive, Negative,Neutra...
IRJET- Sentimental Analysis from Tweets to Find Positive, Negative,Neutra...IRJET Journal
 
Clustering of Big Data Using Different Data-Mining Techniques
Clustering of Big Data Using Different Data-Mining TechniquesClustering of Big Data Using Different Data-Mining Techniques
Clustering of Big Data Using Different Data-Mining TechniquesIRJET Journal
 
Learn NI STS tester at Univiversity of Florida
Learn NI STS tester at Univiversity of FloridaLearn NI STS tester at Univiversity of Florida
Learn NI STS tester at Univiversity of FloridaHank Lydick
 

Similar a Tdtechtalk20160425myui (20)

Recommendation 101 using Hivemall
Recommendation 101 using HivemallRecommendation 101 using Hivemall
Recommendation 101 using Hivemall
 
Introduction to New features and Use cases of Hivemall
Introduction to New features and Use cases of HivemallIntroduction to New features and Use cases of Hivemall
Introduction to New features and Use cases of Hivemall
 
Tdtechtalk20160330myui
Tdtechtalk20160330myuiTdtechtalk20160330myui
Tdtechtalk20160330myui
 
Machine Learning for Molecules: Lessons and Challenges of Data-Centric Chemistry
Machine Learning for Molecules: Lessons and Challenges of Data-Centric ChemistryMachine Learning for Molecules: Lessons and Challenges of Data-Centric Chemistry
Machine Learning for Molecules: Lessons and Challenges of Data-Centric Chemistry
 
Doing Analytics Right - Building the Analytics Environment
Doing Analytics Right - Building the Analytics EnvironmentDoing Analytics Right - Building the Analytics Environment
Doing Analytics Right - Building the Analytics Environment
 
2nd Hivemall meetup 20151020
2nd Hivemall meetup 201510202nd Hivemall meetup 20151020
2nd Hivemall meetup 20151020
 
OPERATION ANALYTICS AND INVESTIGATING METRIC SPIKE.pptx
OPERATION ANALYTICS AND INVESTIGATING METRIC SPIKE.pptxOPERATION ANALYTICS AND INVESTIGATING METRIC SPIKE.pptx
OPERATION ANALYTICS AND INVESTIGATING METRIC SPIKE.pptx
 
313 IDS _Course_Introduction_PPT.pptx
313 IDS _Course_Introduction_PPT.pptx313 IDS _Course_Introduction_PPT.pptx
313 IDS _Course_Introduction_PPT.pptx
 
Data+Science+in+Python+-+Data+Prep+&+EDA.pdf
Data+Science+in+Python+-+Data+Prep+&+EDA.pdfData+Science+in+Python+-+Data+Prep+&+EDA.pdf
Data+Science+in+Python+-+Data+Prep+&+EDA.pdf
 
Why To Learn Data Science.pptx
Why To Learn Data Science.pptxWhy To Learn Data Science.pptx
Why To Learn Data Science.pptx
 
Copyright © 2012 EMC Corporation. All Rights Reserved. EMC.docx
Copyright © 2012 EMC Corporation. All Rights Reserved. EMC.docxCopyright © 2012 EMC Corporation. All Rights Reserved. EMC.docx
Copyright © 2012 EMC Corporation. All Rights Reserved. EMC.docx
 
IAT334-Lec08-Experiment.pptx
IAT334-Lec08-Experiment.pptxIAT334-Lec08-Experiment.pptx
IAT334-Lec08-Experiment.pptx
 
Design Thinking Approach for IT in Business
Design Thinking Approach for IT in BusinessDesign Thinking Approach for IT in Business
Design Thinking Approach for IT in Business
 
楽天における機械学習アルゴリズムの活用
楽天における機械学習アルゴリズムの活用楽天における機械学習アルゴリズムの活用
楽天における機械学習アルゴリズムの活用
 
Operation Research VS Software Engineering
Operation Research VS Software EngineeringOperation Research VS Software Engineering
Operation Research VS Software Engineering
 
Curriculum Vitae of Ramadiansyah
Curriculum Vitae of RamadiansyahCurriculum Vitae of Ramadiansyah
Curriculum Vitae of Ramadiansyah
 
CV2015
CV2015CV2015
CV2015
 
IRJET- Sentimental Analysis from Tweets to Find Positive, Negative,Neutra...
IRJET-  	  Sentimental Analysis from Tweets to Find Positive, Negative,Neutra...IRJET-  	  Sentimental Analysis from Tweets to Find Positive, Negative,Neutra...
IRJET- Sentimental Analysis from Tweets to Find Positive, Negative,Neutra...
 
Clustering of Big Data Using Different Data-Mining Techniques
Clustering of Big Data Using Different Data-Mining TechniquesClustering of Big Data Using Different Data-Mining Techniques
Clustering of Big Data Using Different Data-Mining Techniques
 
Learn NI STS tester at Univiversity of Florida
Learn NI STS tester at Univiversity of FloridaLearn NI STS tester at Univiversity of Florida
Learn NI STS tester at Univiversity of Florida
 

Más de Makoto Yui

Apache Hivemall and my OSS experience
Apache Hivemall and my OSS experienceApache Hivemall and my OSS experience
Apache Hivemall and my OSS experienceMakoto Yui
 
Introduction to Apache Hivemall v0.5.2 and v0.6
Introduction to Apache Hivemall v0.5.2 and v0.6Introduction to Apache Hivemall v0.5.2 and v0.6
Introduction to Apache Hivemall v0.5.2 and v0.6Makoto Yui
 
Introduction to Apache Hivemall v0.5.0
Introduction to Apache Hivemall v0.5.0Introduction to Apache Hivemall v0.5.0
Introduction to Apache Hivemall v0.5.0Makoto Yui
 
Idea behind Apache Hivemall
Idea behind Apache HivemallIdea behind Apache Hivemall
Idea behind Apache HivemallMakoto Yui
 
Introduction to Apache Hivemall v0.5.0
Introduction to Apache Hivemall v0.5.0Introduction to Apache Hivemall v0.5.0
Introduction to Apache Hivemall v0.5.0Makoto Yui
 
What's new in Hivemall v0.5.0
What's new in Hivemall v0.5.0What's new in Hivemall v0.5.0
What's new in Hivemall v0.5.0Makoto Yui
 
What's new in Apache Hivemall v0.5.0
What's new in Apache Hivemall v0.5.0What's new in Apache Hivemall v0.5.0
What's new in Apache Hivemall v0.5.0Makoto Yui
 
Revisiting b+-trees
Revisiting b+-treesRevisiting b+-trees
Revisiting b+-treesMakoto Yui
 
Incubating Apache Hivemall
Incubating Apache HivemallIncubating Apache Hivemall
Incubating Apache HivemallMakoto Yui
 
Hivemall meets Digdag @Hackertackle 2018-02-17
Hivemall meets Digdag @Hackertackle 2018-02-17Hivemall meets Digdag @Hackertackle 2018-02-17
Hivemall meets Digdag @Hackertackle 2018-02-17Makoto Yui
 
Apache Hivemall @ Apache BigData '17, Miami
Apache Hivemall @ Apache BigData '17, MiamiApache Hivemall @ Apache BigData '17, Miami
Apache Hivemall @ Apache BigData '17, MiamiMakoto Yui
 
機械学習のデータ並列処理@第7回BDI研究会
機械学習のデータ並列処理@第7回BDI研究会機械学習のデータ並列処理@第7回BDI研究会
機械学習のデータ並列処理@第7回BDI研究会Makoto Yui
 
Podling Hivemall in the Apache Incubator
Podling Hivemall in the Apache IncubatorPodling Hivemall in the Apache Incubator
Podling Hivemall in the Apache IncubatorMakoto Yui
 
Dots20161029 myui
Dots20161029 myuiDots20161029 myui
Dots20161029 myuiMakoto Yui
 
Hadoopsummit16 myui
Hadoopsummit16 myuiHadoopsummit16 myui
Hadoopsummit16 myuiMakoto Yui
 
HadoopCon'16, Taipei @myui
HadoopCon'16, Taipei @myuiHadoopCon'16, Taipei @myui
HadoopCon'16, Taipei @myuiMakoto Yui
 
3rd Hivemall meetup
3rd Hivemall meetup3rd Hivemall meetup
3rd Hivemall meetupMakoto Yui
 
Hivemall dbtechshowcase 20160713 #dbts2016
Hivemall dbtechshowcase 20160713 #dbts2016Hivemall dbtechshowcase 20160713 #dbts2016
Hivemall dbtechshowcase 20160713 #dbts2016Makoto Yui
 
Introduction to Hivemall
Introduction to HivemallIntroduction to Hivemall
Introduction to HivemallMakoto Yui
 
Datascientistsymp1113
Datascientistsymp1113Datascientistsymp1113
Datascientistsymp1113Makoto Yui
 

Más de Makoto Yui (20)

Apache Hivemall and my OSS experience
Apache Hivemall and my OSS experienceApache Hivemall and my OSS experience
Apache Hivemall and my OSS experience
 
Introduction to Apache Hivemall v0.5.2 and v0.6
Introduction to Apache Hivemall v0.5.2 and v0.6Introduction to Apache Hivemall v0.5.2 and v0.6
Introduction to Apache Hivemall v0.5.2 and v0.6
 
Introduction to Apache Hivemall v0.5.0
Introduction to Apache Hivemall v0.5.0Introduction to Apache Hivemall v0.5.0
Introduction to Apache Hivemall v0.5.0
 
Idea behind Apache Hivemall
Idea behind Apache HivemallIdea behind Apache Hivemall
Idea behind Apache Hivemall
 
Introduction to Apache Hivemall v0.5.0
Introduction to Apache Hivemall v0.5.0Introduction to Apache Hivemall v0.5.0
Introduction to Apache Hivemall v0.5.0
 
What's new in Hivemall v0.5.0
What's new in Hivemall v0.5.0What's new in Hivemall v0.5.0
What's new in Hivemall v0.5.0
 
What's new in Apache Hivemall v0.5.0
What's new in Apache Hivemall v0.5.0What's new in Apache Hivemall v0.5.0
What's new in Apache Hivemall v0.5.0
 
Revisiting b+-trees
Revisiting b+-treesRevisiting b+-trees
Revisiting b+-trees
 
Incubating Apache Hivemall
Incubating Apache HivemallIncubating Apache Hivemall
Incubating Apache Hivemall
 
Hivemall meets Digdag @Hackertackle 2018-02-17
Hivemall meets Digdag @Hackertackle 2018-02-17Hivemall meets Digdag @Hackertackle 2018-02-17
Hivemall meets Digdag @Hackertackle 2018-02-17
 
Apache Hivemall @ Apache BigData '17, Miami
Apache Hivemall @ Apache BigData '17, MiamiApache Hivemall @ Apache BigData '17, Miami
Apache Hivemall @ Apache BigData '17, Miami
 
機械学習のデータ並列処理@第7回BDI研究会
機械学習のデータ並列処理@第7回BDI研究会機械学習のデータ並列処理@第7回BDI研究会
機械学習のデータ並列処理@第7回BDI研究会
 
Podling Hivemall in the Apache Incubator
Podling Hivemall in the Apache IncubatorPodling Hivemall in the Apache Incubator
Podling Hivemall in the Apache Incubator
 
Dots20161029 myui
Dots20161029 myuiDots20161029 myui
Dots20161029 myui
 
Hadoopsummit16 myui
Hadoopsummit16 myuiHadoopsummit16 myui
Hadoopsummit16 myui
 
HadoopCon'16, Taipei @myui
HadoopCon'16, Taipei @myuiHadoopCon'16, Taipei @myui
HadoopCon'16, Taipei @myui
 
3rd Hivemall meetup
3rd Hivemall meetup3rd Hivemall meetup
3rd Hivemall meetup
 
Hivemall dbtechshowcase 20160713 #dbts2016
Hivemall dbtechshowcase 20160713 #dbts2016Hivemall dbtechshowcase 20160713 #dbts2016
Hivemall dbtechshowcase 20160713 #dbts2016
 
Introduction to Hivemall
Introduction to HivemallIntroduction to Hivemall
Introduction to Hivemall
 
Datascientistsymp1113
Datascientistsymp1113Datascientistsymp1113
Datascientistsymp1113
 

Último

Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfadriantubila
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...only4webmaster01
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
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
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...amitlee9823
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramMoniSankarHazra
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
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 Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceDelhi Call girls
 
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
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
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
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 

Último (20)

Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service 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
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
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...
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
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...
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
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
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
 
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 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...
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 

Tdtechtalk20160425myui