SlideShare a Scribd company logo
1 of 52
Download to read offline
Introduction	to	Hivemall
and	it’s	new	features	in	v0.4
Research	Engineer
Makoto	YUI	@myui
2015/10/20	Hivemall	meetup	#2 1
Tweet	w/	#hivemallmtup
http://eventdots.jp/event/571107
Ø 2015.04	Joined	Treasure	Data,	Inc.
1st Research	Engineer	in	Treasure	Data
My	mission	in	TD	is	developing	ML-as-a-Service
Ø 2010.04-2015.03	Senior	Researcher	at	National	
Institute	of	Advanced	Industrial	Science	and	
Technology,	Japan.	
Worked	on	a	large-scale	Machine	Learning	project	
and	Parallel	Databases	
Ø 2009.03	Ph.D.	in	Computer	Science	from	NAIST
Ø Super	programmer	award	from	the	MITOU	
Foundation
Who	am		I	?
2015/10/20	Hivemall	meetup	#2 2
Agenda
1. What	is	Hivemall
2. How	to	use	Hivemall
3. New	Features	in	Hivemall	v0.4
1. Random	Forest
2. Factorization	Machine
4. Development	Roadmap	of	Hivemall
2015/10/20	Hivemall	meetup	#2 3
What	is	Hivemall
Scalable	machine	learning	library	built	as	a	collection	of	
Hive	UDFs,	licensed	under	the	Apache	License	v2
2015/10/20	Hivemall	meetup	#2 4
https://github.com/myui/hivemall
What	is	Hivemall
Hadoop	HDFS
MapReduce
(MR v1)
Hive /	PIG
Hivemall
Apache	YARN
Apache	Tez	
DAG	processing
MR	v2
Machine	Learning
Query	Processing
Parallel	Data	
Processing	Framework
Resource	Management
Distributed	File	System
2015/10/20	Hivemall	meetup	#2 5
Scalable	machine	learning	library	built	as	a	collection	of	
Hive	UDFs,	licensed	under	the	Apache	License	v2
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	
2015/10/20	Hivemall	meetup	#2 6
List	of	Features	in	Hivemall	v0.3.2
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
Treasure	Data	supports	Hivemall	v0.3.2-3
2015/10/20	Hivemall	meetup	#2 7
Ø CTR	prediction	of	Ad	click	logs
• Algorithm:	Logistic	regression
• Freakout Inc.	and	more
Ø Gender	prediction	of	Ad	click	logs
• Algorithm:	Classification
• Scaleout Inc.
Ø Churn	Detection
• Algorithm:	Regression
• OISIX	and	more
Ø Item/User	recommendation
• Algorithm:	Recommendation	(Matrix	Factorization	/	kNN)	
• Adtech Companies,	ISP	portal,	and	more
Ø Value	prediction	of	Real	estates
• Algorithm:		Regression
• Livesense
Industry	use	cases	of	Hivemall
82015/10/20	Hivemall	meetup	#2
How	to	use	Hivemall
Machine
Learning
Training
Prediction
Prediction
Model
Label
Feature	Vector
Feature	Vector
Label
Data	preparation 2015/10/20	Hivemall	meetup	#2 9
CREATE EXTERNAL TABLE e2006tfidf_train (
rowid int,
label float,
features ARRAY<STRING>
)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY '¥t'
COLLECTION ITEMS TERMINATED BY ",“
STORED AS TEXTFILE LOCATION '/dataset/E2006-tfidf/train';
How	to	use	Hivemall	- Data	preparation
Define	a	Hive	table	for	training/testing	data
2015/10/20	Hivemall	meetup	#2 10
How	to	use	Hivemall
Machine
Learning
Training
Prediction
Prediction
Model
Label
Feature	Vector
Feature	Vector
Label
Feature	Engineering
2015/10/20	Hivemall	meetup	#2 11
create view e2006tfidf_train_scaled
as
select
rowid,
rescale(target,${min_label},${max_label})
as label,
features
from
e2006tfidf_train;
Applying	a	Min-Max	Feature	Normalization
How	to	use	Hivemall	- Feature	Engineering
Transforming	a	label	value	
to	a	value	between	0.0	and	1.0
2015/10/20	Hivemall	meetup	#2 12
How	to	use	Hivemall
Machine
Learning
Training
Prediction
Prediction
Model
Label
Feature	Vector
Feature	Vector
Label
Training
2015/10/20	Hivemall	meetup	#2 13
How	to	use	Hivemall	- Training
CREATE TABLE lr_model AS
SELECT
feature,
avg(weight) as weight
FROM (
SELECT logress(features,label,..)
as (feature,weight)
FROM train
) t
GROUP BY feature
Training	by	logistic	regression
map-only	task	to	learn	a	prediction	model
Shuffle	map-outputs	to	reduces	by	feature
Reducers	perform	model	averaging	
in	parallel
2015/10/20	Hivemall	meetup	#2 14
How	to	use	Hivemall	- Training
CREATE TABLE news20b_cw_model1 AS
SELECT
feature,
voted_avg(weight) as weight
FROM
(SELECT
train_cw(features,label)
as (feature,weight)
FROM
news20b_train
) t
GROUP BY feature
Training	of	Confidence	Weighted	Classifier
Vote	to	use	negative	or	positive	
weights	for	avg
+0.7,	+0.3,	+0.2,	-0.1,	+0.7
Training	for	the	CW	classifier
2015/10/20	Hivemall	meetup	#2 15
create table news20mc_ensemble_model1as
select
label,
cast(feature as int) as feature,
cast(voted_avg(weight)as float) as weight
from
(select
train_multiclass_cw(addBias(features),label)
as (label,feature,weight)
from
news20mc_train_x3
union all
select
train_multiclass_arow(addBias(features),label)
as (label,feature,weight)
from
news20mc_train_x3
union all
select
train_multiclass_scw(addBias(features),label)
as (label,feature,weight)
from
news20mc_train_x3
) t
group by label,feature;
Ensemble	learning	for	stable	prediction	performance
Just	stack	prediction	models	
by	union	all
26 / 43
162015/10/20	Hivemall	meetup	#2
How	to	use	Hivemall
Machine
Learning
Training
Prediction
Prediction
Model
Label
Feature	Vector
Feature	Vector
Label
Prediction
2015/10/20	Hivemall	meetup	#2 17
How	to	use	Hivemall	- Prediction
CREATE	TABLE	lr_predict
as
SELECT
t.rowid,	
sigmoid(sum(m.weight))	 as	prob
FROM
testing_exploded t	LEFT	OUTER	JOIN
lr_model m	ON	(t.feature =	m.feature)
GROUP	BY	
t.rowid
Prediction	is	done	by	LEFT	OUTER	JOIN
between	test	data	and	prediction	model
No	need	to	load	the	entire	model	into	memory
2015/10/20	Hivemall	meetup	#2 18
How	to	use	Hivemall
Machine
Learning
Batch Training on Hadoop
Online Prediction on RDBMS
Prediction
Model
Label
Feature	Vector
Feature	Vector
Label
Export	
prediction	model
2015/10/20	Hivemall	meetup	#2 19
2015/10/20	Hivemall	meetup	#2 20
Online	Prediction	on	MySQL	(RDBMS)
Quick	(msec)	response	on	a	RDBMS
by	adding	an	index	to	feature	column
bit.ly/hivemall-mysql
Agenda
1. What	is	Hivemall
2. How	to	use	Hivemall
3. New	Features	in	Hivemall	v0.4
1. Random	Forest
2. Factorization	Machine
4. Development	Roadmap	of	Hivemall
2015/10/20	Hivemall	meetup	#2 21
Features to	be	supported	in	Hivemall	v0.4
2015/10/20	Hivemall	meetup	#2 22
1.RandomForest
• classification,	regression
• Based	on	Smile	github.com/haifengl/smile
2.Factorization	Machine
• classification,	regression	(factorization)
Planned	to	release	v0.4	in	Oct.
Factorization	Machine	are	often	used	by	data	science	
competition	winners	(Criteo/Avazu CTR	prediction)
2015/10/20	Hivemall	meetup	#2 23
RandomForest	in	Hivemall	v0.4
Ensemble	of	Decision	Trees
Already	available	on	a	development	(smile)	branch
and	it’s	usage	is	explained	in	the	project	wiki
Bagging
2015/10/20	Hivemall	meetup	#2 24
Training	of	RandomForest
Out-of-bag	tests	and	Variable	Importance	
2015/10/20	Hivemall	meetup	#2 25
2015/10/20	Hivemall	meetup	#2 26
Prediction	of	RandomForest
2015/10/20	Hivemall	meetup	#2 27
RandomForest
DEMO
http://bit.ly/hivemall-rf
2015/10/20	Hivemall	meetup	#2 28
Factorization	Machine
Matrix	Factorization
2015/10/20	Hivemall	meetup	#2 29
Factorization	Machine
Context	information	(e.g.,	time)	
can	be	considered
Source:	http://www.ismll.uni-hildesheim.de/pub/pdfs/Rendle2010FM.pdf
2015/10/20	Hivemall	meetup	#2 30
Factorization	Machine
Factorization	Model	with	degress=2	(2-way	interaction)
Global Bias
Regression coefficience
of j-th variable
Pairwise Interaction
Factorization
2015/10/20	Hivemall	meetup	#2 31
Factorization	Machine
Factorization	Machine
≈ Polynomial	Regression	+	Factorization
For	a	feature	[a,	b],	the	degree-2	polynomial	features	are	[1,	a,	b,	a^2,	ab,	b^2].
bit.ly/hivemall-poly
2015/10/20	Hivemall	meetup	#2 32
Factorization	Machine	
DEMO
Agenda
1. What	is	Hivemall
2. How	to	use	Hivemall
3. New	Features	in	Hivemall	v0.4
1. Random	Forest
2. Factorization	Machine
4. Development	Roadmap	of	Hivemall
2015/10/20	Hivemall	meetup	#2 33
Features to	be	supported	in	Hivemall	v0.4.1
2015/10/20	Hivemall	meetup	#2 34
1.Gradient	Tree	Boosting
• classifier,	regression
2.Field-aware	Factorization	Machine
• classification,	regression	(factorization)
• Existing	implementation,	i.e.,	LibFFM,	only	can	be	
applied	for	classification	
Planned	to	release	v0.4.1	in	Nov/Dec.
2015/10/20	Hivemall	meetup	#2 35
Gradient	Tree	Boosting	(or	Gradient	Boosting	Trees)	
RF	≈	Bagging	+	Decision	Trees	
parallel execution of	decision trees
GBT	≈	Boosting	+	Decision	Trees
Sequential execution of	decision trees
2015/10/20	Hivemall	meetup	#2 36
Gradient	Tree	Boosting
Features to	be	supported	in	Hivemall	v0.4.2
2015/10/20	Hivemall	meetup	#2 37
1. Online	LDA
• topic	modeling,	clustering
2. Mix	server	on	Apache	YARN
• Service	for	parameter	sharing	among	workers
• working	w/	@maropu
Planned	to	release	v0.4.2	in	Dec/Jan.
External	service	to	share	parameters	by	distributed	
training	processes	in	the	middle	of	training
2015/10/20	Hivemall	meetup	#2 38
What’s	Mix	Server?
・・・・・・
Model	updates
Async add
Piggy	back	if	…
AVG/Argmin KLD	accumulator
hash(feature)	%	N
Non-blocking	Channel
(single	shared	TCP	connection	w/	TCP	keepalive)
classifiers
Mix	serv.Mix	serv.
Computation/training	
is	not	being	blocked
Taking	benefits	of	asynchronous	non-blocking	I/O	
is	the	core	idea	behind	Hivemall’s MIX	protocol
2015/10/20	Hivemall	meetup	#2 39
create	table	kdd10a_pa1_model1	as
select	
feature,
cast(voted_avg(weight)	as	float)	as	weight
from	
(select	
train_pa1(addBias(features),label,"-mix	host01,host02,host03")	
as	(feature,weight)
from	
kdd10a_train_x3
)	t	
group	by	feature;
How	to	use	Mix	Server
Conclusion	and	Takeaway
New	features	in	v0.4
2015/10/20	Hivemall	meetup	#2 40
• Random	Forest
• Factorization	Machine
More	will	follow	in	v0.4.1
Next	Actions
• Propose	Hivemall	to
Apache	Incubator
• New	Hivemall	Logo
Hivemall	provides	a	collection	of	machine	
learning	algorithms	as	Hive	UDFs/UDTFs
The	latest	version	of	Hivemall	is	available	on
Treasure	Data	and	used	by	several	companies	
Including	OISIX,	Livesense,	Scaleout,	and	Freakout.
2015/10/20	Hivemall	meetup	#2 41
Beyond	Query-as-a-Service!
We							Open-source!	We	invented	..
We	are	hiring	machine	learning	engineer!
2015/10/20	Hivemall	meetup	#2 42
Additional	slides
Recommendation
Rating	prediction	of	a	Matrix	
Can	be	applied	for	user/Item	Recommendation
432015/10/20	Hivemall	meetup	#2
44
Matrix	Factorization
Factorize	a	matrix	
into	a	product	of	matrices
having	k-latent	factor
2015/10/20	Hivemall	meetup	#2
45
Mean	Rating
Matrix	Factorization
Regularization
Bias	
for	each	user/item
Criteria	of	Biased	MF
2015/10/20	Hivemall	meetup	#2
Factorization
46
Training	of	Matrix	Factorization
Support iterative training using local disk cache
2015/10/20	Hivemall	meetup	#2
47
Prediction	of	Matrix	Factorization
2015/10/20	Hivemall	meetup	#2
ØAlgorithm	is	different
Spark:	ALS-WR	
(considers	regularization)
Hivemall:	Biased-MF	
(considers	regularization	and	biases)
ØUsability
Spark:	100+	line	Scala	coding
Hivemall:	SQL	(would	be	more	easy	to	use)
ØPrediction	Accuracy
Almost	same	for	MovieLens 10M	datasets
2015/10/20	Hivemall	meetup	#2 48
Comparison	to	Spark	MLlib
rowid features
1 ["reflectance:0.5252967","specific_heat:0.19863537","weight:0.
0"]
2 ["reflectance:0.6797837","specific_heat:0.12567581","weight:0.
13255163"]
3 ["reflectance:0.5950446","specific_heat:0.09166764","weight:0.
052084323"]		
Unsupervised	Learning:	Anomaly	Detection
Sensor	data	etc.
Anomaly	detection	runs	on	a	series	of	SQL	queries
492015/10/20	Hivemall	meetup	#2
2015/10/20	Hivemall	meetup	#2 50
Anomalies	in	a	Sensor	Data
Source:	https://codeiq.jp/q/207
Image	Source:	https://en.wikipedia.org/wiki/Local_outlier_factor
2015/10/20	Hivemall	meetup	#2 51
Local	Outlier	Factor	(LoF)
Basic	idea	of	LOF:	comparing	the	local	density	of	a	
point	with	the	densities of	its	neighbors
2015/10/20	Hivemall	meetup	#2 52
DEMO:	Local	Outlier	Factor
rowid features
1 ["reflectance:0.5252967","specific_heat:0.19863537","weight:0.
0"]
2 ["reflectance:0.6797837","specific_heat:0.12567581","weight:0.
13255163"]
3 ["reflectance:0.5950446","specific_heat:0.09166764","weight:0.
052084323"]

More Related Content

What's hot

Five python libraries should know for machine learning
Five python libraries should know for machine learningFive python libraries should know for machine learning
Five python libraries should know for machine learningNaveen Davis
 
Webinar: Mastering Python - An Excellent tool for Web Scraping and Data Anal...
Webinar:  Mastering Python - An Excellent tool for Web Scraping and Data Anal...Webinar:  Mastering Python - An Excellent tool for Web Scraping and Data Anal...
Webinar: Mastering Python - An Excellent tool for Web Scraping and Data Anal...Edureka!
 
Python for Data Science with Anaconda
Python for Data Science with AnacondaPython for Data Science with Anaconda
Python for Data Science with AnacondaTravis Oliphant
 
Distributed TensorFlow on Hadoop, Mesos, Kubernetes, Spark
Distributed TensorFlow on Hadoop, Mesos, Kubernetes, SparkDistributed TensorFlow on Hadoop, Mesos, Kubernetes, Spark
Distributed TensorFlow on Hadoop, Mesos, Kubernetes, SparkJan Wiegelmann
 
Python and BIG Data analytics | Python Fundamentals | Python Architecture
Python and BIG Data analytics | Python Fundamentals | Python ArchitecturePython and BIG Data analytics | Python Fundamentals | Python Architecture
Python and BIG Data analytics | Python Fundamentals | Python ArchitectureSkillspeed
 
Flux - Open Machine Learning Stack / Pipeline
Flux - Open Machine Learning Stack / PipelineFlux - Open Machine Learning Stack / Pipeline
Flux - Open Machine Learning Stack / PipelineJan Wiegelmann
 
Intro to Mahout -- DC Hadoop
Intro to Mahout -- DC HadoopIntro to Mahout -- DC Hadoop
Intro to Mahout -- DC HadoopGrant Ingersoll
 
Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Andy Petrella
 
Deep Learning for Autonomous Driving
Deep Learning for Autonomous DrivingDeep Learning for Autonomous Driving
Deep Learning for Autonomous DrivingJan Wiegelmann
 
Python for Big Data Analytics
Python for Big Data AnalyticsPython for Big Data Analytics
Python for Big Data AnalyticsEdureka!
 
GalvanizeU Seattle: Eleven Almost-Truisms About Data
GalvanizeU Seattle: Eleven Almost-Truisms About DataGalvanizeU Seattle: Eleven Almost-Truisms About Data
GalvanizeU Seattle: Eleven Almost-Truisms About DataPaco Nathan
 
Scalable Collaborative Filtering Recommendation Algorithms on Apache Spark
Scalable Collaborative Filtering Recommendation Algorithms on Apache SparkScalable Collaborative Filtering Recommendation Algorithms on Apache Spark
Scalable Collaborative Filtering Recommendation Algorithms on Apache SparkEvan Casey
 
A Survey on Improve Efficiency And Scability vertical mining using Agriculter...
A Survey on Improve Efficiency And Scability vertical mining using Agriculter...A Survey on Improve Efficiency And Scability vertical mining using Agriculter...
A Survey on Improve Efficiency And Scability vertical mining using Agriculter...Editor IJMTER
 
The road ahead for scientific computing with Python
The road ahead for scientific computing with PythonThe road ahead for scientific computing with Python
The road ahead for scientific computing with PythonRalf Gommers
 
Berlin buzzwords 2020-feature-store-dowling
Berlin buzzwords 2020-feature-store-dowlingBerlin buzzwords 2020-feature-store-dowling
Berlin buzzwords 2020-feature-store-dowlingJim Dowling
 
Hopsworks data engineering melbourne april 2020
Hopsworks   data engineering melbourne april 2020Hopsworks   data engineering melbourne april 2020
Hopsworks data engineering melbourne april 2020Jim Dowling
 
Hadoop and Machine Learning
Hadoop and Machine LearningHadoop and Machine Learning
Hadoop and Machine Learningjoshwills
 

What's hot (20)

Deep learning
Deep learningDeep learning
Deep learning
 
Five python libraries should know for machine learning
Five python libraries should know for machine learningFive python libraries should know for machine learning
Five python libraries should know for machine learning
 
Icpp power ai-workshop 2018
Icpp power ai-workshop 2018Icpp power ai-workshop 2018
Icpp power ai-workshop 2018
 
Webinar: Mastering Python - An Excellent tool for Web Scraping and Data Anal...
Webinar:  Mastering Python - An Excellent tool for Web Scraping and Data Anal...Webinar:  Mastering Python - An Excellent tool for Web Scraping and Data Anal...
Webinar: Mastering Python - An Excellent tool for Web Scraping and Data Anal...
 
Python for Data Science with Anaconda
Python for Data Science with AnacondaPython for Data Science with Anaconda
Python for Data Science with Anaconda
 
Distributed TensorFlow on Hadoop, Mesos, Kubernetes, Spark
Distributed TensorFlow on Hadoop, Mesos, Kubernetes, SparkDistributed TensorFlow on Hadoop, Mesos, Kubernetes, Spark
Distributed TensorFlow on Hadoop, Mesos, Kubernetes, Spark
 
Python and BIG Data analytics | Python Fundamentals | Python Architecture
Python and BIG Data analytics | Python Fundamentals | Python ArchitecturePython and BIG Data analytics | Python Fundamentals | Python Architecture
Python and BIG Data analytics | Python Fundamentals | Python Architecture
 
Flux - Open Machine Learning Stack / Pipeline
Flux - Open Machine Learning Stack / PipelineFlux - Open Machine Learning Stack / Pipeline
Flux - Open Machine Learning Stack / Pipeline
 
Intro to Mahout -- DC Hadoop
Intro to Mahout -- DC HadoopIntro to Mahout -- DC Hadoop
Intro to Mahout -- DC Hadoop
 
Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)Towards a rebirth of data science (by Data Fellas)
Towards a rebirth of data science (by Data Fellas)
 
Deep Learning for Autonomous Driving
Deep Learning for Autonomous DrivingDeep Learning for Autonomous Driving
Deep Learning for Autonomous Driving
 
Python for Big Data Analytics
Python for Big Data AnalyticsPython for Big Data Analytics
Python for Big Data Analytics
 
Set
SetSet
Set
 
GalvanizeU Seattle: Eleven Almost-Truisms About Data
GalvanizeU Seattle: Eleven Almost-Truisms About DataGalvanizeU Seattle: Eleven Almost-Truisms About Data
GalvanizeU Seattle: Eleven Almost-Truisms About Data
 
Scalable Collaborative Filtering Recommendation Algorithms on Apache Spark
Scalable Collaborative Filtering Recommendation Algorithms on Apache SparkScalable Collaborative Filtering Recommendation Algorithms on Apache Spark
Scalable Collaborative Filtering Recommendation Algorithms on Apache Spark
 
A Survey on Improve Efficiency And Scability vertical mining using Agriculter...
A Survey on Improve Efficiency And Scability vertical mining using Agriculter...A Survey on Improve Efficiency And Scability vertical mining using Agriculter...
A Survey on Improve Efficiency And Scability vertical mining using Agriculter...
 
The road ahead for scientific computing with Python
The road ahead for scientific computing with PythonThe road ahead for scientific computing with Python
The road ahead for scientific computing with Python
 
Berlin buzzwords 2020-feature-store-dowling
Berlin buzzwords 2020-feature-store-dowlingBerlin buzzwords 2020-feature-store-dowling
Berlin buzzwords 2020-feature-store-dowling
 
Hopsworks data engineering melbourne april 2020
Hopsworks   data engineering melbourne april 2020Hopsworks   data engineering melbourne april 2020
Hopsworks data engineering melbourne april 2020
 
Hadoop and Machine Learning
Hadoop and Machine LearningHadoop and Machine Learning
Hadoop and Machine Learning
 

Viewers also liked

Hivemall meetup vol2 oisix
Hivemall meetup vol2 oisixHivemall meetup vol2 oisix
Hivemall meetup vol2 oisixTaisuke Fukawa
 
Hivemallで始める不動産価格推定サービス
Hivemallで始める不動産価格推定サービスHivemallで始める不動産価格推定サービス
Hivemallで始める不動産価格推定サービスKentaro Yoshida
 
hivemallを使って4日間で性別推定した話
hivemallを使って4日間で性別推定した話hivemallを使って4日間で性別推定した話
hivemallを使って4日間で性別推定した話eventdotsjp
 
Hivemall v0.3の機能紹介@1st Hivemall meetup
Hivemall v0.3の機能紹介@1st Hivemall meetupHivemall v0.3の機能紹介@1st Hivemall meetup
Hivemall v0.3の機能紹介@1st Hivemall meetupMakoto Yui
 
Hivemallmtup 20160908
Hivemallmtup 20160908Hivemallmtup 20160908
Hivemallmtup 20160908Kazuki Ohmori
 
3rd Hivemall meetup
3rd Hivemall meetup3rd Hivemall meetup
3rd Hivemall meetupMakoto Yui
 
EmbulkとDigdagとデータ分析基盤と
EmbulkとDigdagとデータ分析基盤とEmbulkとDigdagとデータ分析基盤と
EmbulkとDigdagとデータ分析基盤とToru Takahashi
 
Sano tokyowebmining 201625_v04
Sano tokyowebmining 201625_v04Sano tokyowebmining 201625_v04
Sano tokyowebmining 201625_v04Masakazu Sano
 

Viewers also liked (10)

Hivemall meetup vol2 oisix
Hivemall meetup vol2 oisixHivemall meetup vol2 oisix
Hivemall meetup vol2 oisix
 
Hivemallで始める不動産価格推定サービス
Hivemallで始める不動産価格推定サービスHivemallで始める不動産価格推定サービス
Hivemallで始める不動産価格推定サービス
 
hivemallを使って4日間で性別推定した話
hivemallを使って4日間で性別推定した話hivemallを使って4日間で性別推定した話
hivemallを使って4日間で性別推定した話
 
20160908 hivemall meetup
20160908 hivemall meetup20160908 hivemall meetup
20160908 hivemall meetup
 
Hivemall v0.3の機能紹介@1st Hivemall meetup
Hivemall v0.3の機能紹介@1st Hivemall meetupHivemall v0.3の機能紹介@1st Hivemall meetup
Hivemall v0.3の機能紹介@1st Hivemall meetup
 
Hivemallmtup 20160908
Hivemallmtup 20160908Hivemallmtup 20160908
Hivemallmtup 20160908
 
3rd Hivemall meetup
3rd Hivemall meetup3rd Hivemall meetup
3rd Hivemall meetup
 
Sano hmm 20150512
Sano hmm 20150512Sano hmm 20150512
Sano hmm 20150512
 
EmbulkとDigdagとデータ分析基盤と
EmbulkとDigdagとデータ分析基盤とEmbulkとDigdagとデータ分析基盤と
EmbulkとDigdagとデータ分析基盤と
 
Sano tokyowebmining 201625_v04
Sano tokyowebmining 201625_v04Sano tokyowebmining 201625_v04
Sano tokyowebmining 201625_v04
 

Similar to 2nd Hivemall meetup 20151020

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
 
BuildingSMART Standards Summit 2015 - Technical Room - Linked Data for Constr...
BuildingSMART Standards Summit 2015 - Technical Room - Linked Data for Constr...BuildingSMART Standards Summit 2015 - Technical Room - Linked Data for Constr...
BuildingSMART Standards Summit 2015 - Technical Room - Linked Data for Constr...Pieter Pauwels
 
Datascientistsymp1113
Datascientistsymp1113Datascientistsymp1113
Datascientistsymp1113Makoto Yui
 
Joaquin Salvachúa_Put your data to work on your business using AI/ML with FIW...
Joaquin Salvachúa_Put your data to work on your business using AI/ML with FIW...Joaquin Salvachúa_Put your data to work on your business using AI/ML with FIW...
Joaquin Salvachúa_Put your data to work on your business using AI/ML with FIW...FIWARE
 
Labfiles: NetFutures
Labfiles: NetFuturesLabfiles: NetFutures
Labfiles: NetFuturesJan Van Mol
 
Helsinki 20180314 v6
Helsinki 20180314 v6Helsinki 20180314 v6
Helsinki 20180314 v6ISSIP
 
Hadoopsummit16 myui
Hadoopsummit16 myuiHadoopsummit16 myui
Hadoopsummit16 myuiMakoto Yui
 
Open Source LSI Design & Fabrication Project for Distributed IP Development
Open Source LSI Design & Fabrication Project for Distributed IP DevelopmentOpen Source LSI Design & Fabrication Project for Distributed IP Development
Open Source LSI Design & Fabrication Project for Distributed IP DevelopmentJunichi Akita
 
Mobile learning: current status, examples, challenges
Mobile learning: current status, examples, challengesMobile learning: current status, examples, challenges
Mobile learning: current status, examples, challengesscil CH
 
FI-WARE Basic Guide
FI-WARE Basic GuideFI-WARE Basic Guide
FI-WARE Basic GuideFIWARE
 
HadoopCon'16, Taipei @myui
HadoopCon'16, Taipei @myuiHadoopCon'16, Taipei @myui
HadoopCon'16, Taipei @myuiMakoto Yui
 
Tdtechtalk20160425myui
Tdtechtalk20160425myuiTdtechtalk20160425myui
Tdtechtalk20160425myuiMakoto 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
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to pythonsjagadeeswari
 
Python Summer Internship
Python Summer InternshipPython Summer Internship
Python Summer InternshipAtul Kumar
 

Similar to 2nd Hivemall meetup 20151020 (20)

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
 
BuildingSMART Standards Summit 2015 - Technical Room - Linked Data for Constr...
BuildingSMART Standards Summit 2015 - Technical Room - Linked Data for Constr...BuildingSMART Standards Summit 2015 - Technical Room - Linked Data for Constr...
BuildingSMART Standards Summit 2015 - Technical Room - Linked Data for Constr...
 
Datascientistsymp1113
Datascientistsymp1113Datascientistsymp1113
Datascientistsymp1113
 
website
websitewebsite
website
 
website
websitewebsite
website
 
Joaquin Salvachúa_Put your data to work on your business using AI/ML with FIW...
Joaquin Salvachúa_Put your data to work on your business using AI/ML with FIW...Joaquin Salvachúa_Put your data to work on your business using AI/ML with FIW...
Joaquin Salvachúa_Put your data to work on your business using AI/ML with FIW...
 
Labfiles: NetFutures
Labfiles: NetFuturesLabfiles: NetFutures
Labfiles: NetFutures
 
Resume Nov/2011
Resume Nov/2011Resume Nov/2011
Resume Nov/2011
 
Helsinki 20180314 v6
Helsinki 20180314 v6Helsinki 20180314 v6
Helsinki 20180314 v6
 
Introduction to Hivemall
Introduction to HivemallIntroduction to Hivemall
Introduction to Hivemall
 
Hadoopsummit16 myui
Hadoopsummit16 myuiHadoopsummit16 myui
Hadoopsummit16 myui
 
Open Source LSI Design & Fabrication Project for Distributed IP Development
Open Source LSI Design & Fabrication Project for Distributed IP DevelopmentOpen Source LSI Design & Fabrication Project for Distributed IP Development
Open Source LSI Design & Fabrication Project for Distributed IP Development
 
Mobile learning: current status, examples, challenges
Mobile learning: current status, examples, challengesMobile learning: current status, examples, challenges
Mobile learning: current status, examples, challenges
 
FI-WARE Basic Guide
FI-WARE Basic GuideFI-WARE Basic Guide
FI-WARE Basic Guide
 
HadoopCon'16, Taipei @myui
HadoopCon'16, Taipei @myuiHadoopCon'16, Taipei @myui
HadoopCon'16, Taipei @myui
 
Tdtechtalk20160425myui
Tdtechtalk20160425myuiTdtechtalk20160425myui
Tdtechtalk20160425myui
 
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
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 
Python Summer Internship
Python Summer InternshipPython Summer Internship
Python Summer Internship
 

More from 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
 
Recommendation 101 using Hivemall
Recommendation 101 using HivemallRecommendation 101 using Hivemall
Recommendation 101 using HivemallMakoto 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
 
Db tech show - hivemall
Db tech show - hivemallDb tech show - hivemall
Db tech show - hivemallMakoto Yui
 
Hivemall tech talk at Redwood, CA
Hivemall tech talk at Redwood, CAHivemall tech talk at Redwood, CA
Hivemall tech talk at Redwood, CAMakoto Yui
 
Hivemall LT @ Machine Learning Casual Talks #3
Hivemall LT @ Machine Learning Casual Talks #3Hivemall LT @ Machine Learning Casual Talks #3
Hivemall LT @ Machine Learning Casual Talks #3Makoto Yui
 

More from 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
 
Recommendation 101 using Hivemall
Recommendation 101 using HivemallRecommendation 101 using Hivemall
Recommendation 101 using Hivemall
 
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
 
Db tech show - hivemall
Db tech show - hivemallDb tech show - hivemall
Db tech show - hivemall
 
Hivemall tech talk at Redwood, CA
Hivemall tech talk at Redwood, CAHivemall tech talk at Redwood, CA
Hivemall tech talk at Redwood, CA
 
Hivemall LT @ Machine Learning Casual Talks #3
Hivemall LT @ Machine Learning Casual Talks #3Hivemall LT @ Machine Learning Casual Talks #3
Hivemall LT @ Machine Learning Casual Talks #3
 

Recently uploaded

Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgsaravananr517913
 
Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm Systemirfanmechengr
 
Crystal Structure analysis and detailed information pptx
Crystal Structure analysis and detailed information pptxCrystal Structure analysis and detailed information pptx
Crystal Structure analysis and detailed information pptxachiever3003
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...121011101441
 
Engineering Drawing section of solid
Engineering Drawing     section of solidEngineering Drawing     section of solid
Engineering Drawing section of solidnamansinghjarodiya
 
Configuration of IoT devices - Systems managament
Configuration of IoT devices - Systems managamentConfiguration of IoT devices - Systems managament
Configuration of IoT devices - Systems managamentBharaniDharan195623
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxRomil Mishra
 
Ch10-Global Supply Chain - Cadena de Suministro.pdf
Ch10-Global Supply Chain - Cadena de Suministro.pdfCh10-Global Supply Chain - Cadena de Suministro.pdf
Ch10-Global Supply Chain - Cadena de Suministro.pdfChristianCDAM
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating SystemRashmi Bhat
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating SystemRashmi Bhat
 
Risk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectRisk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectErbil Polytechnic University
 
welding defects observed during the welding
welding defects observed during the weldingwelding defects observed during the welding
welding defects observed during the weldingMuhammadUzairLiaqat
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
multiple access in wireless communication
multiple access in wireless communicationmultiple access in wireless communication
multiple access in wireless communicationpanditadesh123
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating SystemRashmi Bhat
 
home automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadhome automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadaditya806802
 
Internet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxInternet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxVelmuruganTECE
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catcherssdickerson1
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 

Recently uploaded (20)

Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
 
Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm System
 
Crystal Structure analysis and detailed information pptx
Crystal Structure analysis and detailed information pptxCrystal Structure analysis and detailed information pptx
Crystal Structure analysis and detailed information pptx
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...
 
Engineering Drawing section of solid
Engineering Drawing     section of solidEngineering Drawing     section of solid
Engineering Drawing section of solid
 
Configuration of IoT devices - Systems managament
Configuration of IoT devices - Systems managamentConfiguration of IoT devices - Systems managament
Configuration of IoT devices - Systems managament
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptx
 
Ch10-Global Supply Chain - Cadena de Suministro.pdf
Ch10-Global Supply Chain - Cadena de Suministro.pdfCh10-Global Supply Chain - Cadena de Suministro.pdf
Ch10-Global Supply Chain - Cadena de Suministro.pdf
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating System
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating System
 
Risk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectRisk Management in Engineering Construction Project
Risk Management in Engineering Construction Project
 
welding defects observed during the welding
welding defects observed during the weldingwelding defects observed during the welding
welding defects observed during the welding
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
multiple access in wireless communication
multiple access in wireless communicationmultiple access in wireless communication
multiple access in wireless communication
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating System
 
home automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadhome automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasad
 
Internet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxInternet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptx
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 

2nd Hivemall meetup 20151020