SlideShare a Scribd company logo
1 of 30
Download to read offline
Explore	and	have	fun	with	
TensorFlow
An	introductory	to	TensorFlow
Poo	Kuan	Hoong
https://www.facebook.com/groups/TensorFlowMY/
Disclaimer: The views and opinions
expressed in this slides are those of
the author and do not necessarily
reflect the official policy or position of
ASEAN Data Analytics Exchange
(ADAX). Examples of analysis
performed within this slides are only
examples. They should not be utilized
in real-world analytic products as they
are based only on very limited and
dated open source information.
Assumptions made within the analysis
are not reflective of the position of
ADAX.
Agenda
• Deep	Learning	Libraries
• What	is	TensorFlow?
• Why	it	is	called	TensorFlow?
• Steps	to	start	TensorFlow
• TensorFlow Graph
• Variables	&	Placeholders
• Gradient
• TensorFlow Architecture
• Demo
About	me
Poo	Kuan	Hoong,	http://www.linkedin.com/in/kuanhoong
• Senior	Manager	Data	Science
• Senior	Lecturer
• Chairperson	Data	Science	
Institute
• Founder	R	User	Group	&	
TensorFlow User	Group
• Speaker/Trainer
• Senior	Data	Scientist
TensorFlow &	Deep	Learning	Malaysia	Group
The	TensorFlow &	Deep	Learning	
Malaysia	group's	aims	are:
• To	enable	people	to	create	and	deploy	
their	own	Deep	Learning	models	built	
using	primarily	TensorFlow or	other	
Deep	Learning	libraries.
• To	build	the	key	skill	sets	for	this	group	
from	the	combination	of	both	beginner	
and	intermediate	models	as	well	as	
advancing	to	the	next	level
• A	knowledge	sharing	and	presentations	
platform	in	relation	to	the	cutting	edge	
deep	learning	research	papers	and	
techniques.
https://www.facebook.com/groups/TensorFlowMY/
https://www.meetup.com/tensorflow-deep-learning-malaysia
https://www.meetup.com/MY-RUserGroup/
https://www.facebook.com/rusergroupmalaysia/
Deep	learning	libraries
What	is	TensorFlow?
• URL:	https://www.tensorflow.org/
• Released	under	the	open	source	license on	
November	9,	2015
• Current	version	1.2
• Open	source	software	library	for	
numerical	computation	using	data	flow	
graphs	
• Originally	developed	by	Google	Brain	Team	
to	conduct	machine	learning	and	deep	
neural	networks	research	
• General	enough	to	be	applicable	in	a	wide	
variety	of	other	domains	as	well	
• TensorFlow provides	an	extensive	suite	of	
functions	and	classes	that	allow	users	to	
build	various	models	from	scratch.
Most	popular	on	Github
https://github.com/tensorflow/tensorflow
TensorFlow architecture
• Core	in	C++
• Low	overhead
• Different	front	ends	for	specifying/driving	the	computation
• Python,	C++,	R	and	many	more
CPU	- GPU
• In	TensorFlow,	the	supported	
device	types	
are CPU and GPU.	They	are	
represented	as strings.	For	
example:
• "/cpu:0": The	CPU	of	your	
machine.
• "/gpu:0": The	GPU	of	
your	machine,	if	you	have	one.
• "/gpu:1": The	second	
GPU	of	your	machine,	etc.
Why	it	is	called	TensorFlow?
• What	is	a	Tensor?
Why	it	is	called	
TensorFlow?
• TensorFlow is	based	on	
computation	data	flow	graph
• TensorFlow separates	
definition	of	computations	
from	their	execution
Steps	to	start	with	TensorFlow
• Step	1:	Assemble	a	computational	graph
• Step	2:	Use	a	session	to	execute	operations	in	the	graph
TensorFlow Graph
3
5
add
TensorFlow Graph
• To	get	the	value	of	a
• Create	a	session,	assign	it	to	variable	‘sess’	so	we	can	call	it	later
• Within	the	session,	evaluate	the	graph	to	fetch	the	value	of	a
import tensorflow as tf
a = tf.add(3, 5)
sess = tf.Session()
print (sess.run(a))
sess.close()
• A	Session	object	encapsulates	the	environment	in	which	Operation	objects	are	executed,	
and	Tensor	objects	are	evaluated.	
3
5
add
8
TensorFlow Graph
Xw
MatMul
b
Add
TensorFlow performs	
operations
User	Feeds	
inputs
TensorFlow
Trains	
Variables
User	Fetches	
Outputs
TensorFlow
Flows	tensors
ReLu
Variables
• Variables to	hold	and	
update	parameters.
• Variables	are	in-memory	
buffers	containing	tensors.	
• Must	be	explicitly	
initialized	and	can	be	
saved	to	disk	during	and	
after	training
Placeholder
• A placeholder is	simply	
a	variable	that	will	be	
assigned	data	to	at	a	
later	date.	
• It	allows	operations	to	
be	created	and	
computation	graph	to	
be	built,	without	
needing	the	data.
Learn	Parameters:	Optimization
• The	Optimizer	base	class	provides	
methods	to	compute	gradients	for	a	
loss	and	apply	gradients	to	variables.	
• A	collection	of	subclasses	implement	
classic	optimization	algorithms	such	
as	GradientDescent and	Adagrad.
• TensorFlow provides	functions	to	
compute	the	derivatives	for	a	given	
TensorFlow computation	graph,	
adding	operations	to	the	graph.
Learn	parameters:	Optimization
TensorBoard
• Visualize	your	TensorFlow graph
• Plot	quantitative	metrics	about	
the	execution	of	your	graph
• Show	additional	data	like	
images	that	pass	through	it
TensorFlow Models
https://github.com/tensorflow/models
Models
• adversarial_crypto:	protecting	communications	with	adversarial	neural	cryptography.
• adversarial_text:	semi-supervised	sequence	learning	with	adversarial	training.
• attention_ocr:	a	model	for	real-world	image	text	extraction.
• autoencoder:	various	autoencoders.
• cognitive_mapping_and_planning:	implementation	of	a	spatial	memory	based	mapping	
and	planning	architecture	for	visual	navigation.
• compression:	compressing	and	decompressing	images	using	a	pre-trained	Residual	GRU	
network.
• differential_privacy:	privacy-preserving	student	models	from	multiple	teachers.
• domain_adaptation:	domain	separation	networks.
• im2txt:	image-to-text	neural	network	for	image	captioning.
• inception:	deep	convolutional	networks	for	computer	vision.
TensorFlow Serving
• Flexible,	high-performance	
serving	system	for	machine	
learning	models,	designed	for	
production	environments.
• Easy	to	deploy	new	algorithms	
and	experiments,	while	
keeping	the	same	server	
architecture	and	APIs
Take	away
• There	are	4	steps:
• Step	1:	Assemble	the	graph	–
• 1.	Define	placeholders	for	input	and	output	
• 2.	Define	the	weights
• 3.	Define	the	inference	model
• 4.	Define	loss	function
• 5.	Define	optimizer	
• Step	2:	Train	the	Model
• Step	3:	Optimize	the	Model
The	world	has	too	many	problems	and	not	enough	
people	solving	them.
Thanks!
Questions?
@kuanhoong
https://www.linkedin.com/in/kuanhoong
kuanhoong@gmail.com
Demo
Slides	&	Codes	available	from	Github:	
http://bit.ly/TensorFlowMY

More Related Content

Similar to Explore and have fun with TensorFlow: An introductory to TensorFlow

That conference 2016 deconstructing the scaled agile framework
That conference 2016   deconstructing the scaled agile frameworkThat conference 2016   deconstructing the scaled agile framework
That conference 2016 deconstructing the scaled agile frameworkAngela Dugan
 
Mapping roameractivitiestotactics framework
Mapping roameractivitiestotactics frameworkMapping roameractivitiestotactics framework
Mapping roameractivitiestotactics frameworkDave Catlin
 
Data carpentry instructor-onboarding
Data carpentry instructor-onboardingData carpentry instructor-onboarding
Data carpentry instructor-onboardingtracykteal
 
Data carpentry run-a-workshop
Data carpentry run-a-workshopData carpentry run-a-workshop
Data carpentry run-a-workshoptracykteal
 
Tech landscape 13
Tech landscape 13Tech landscape 13
Tech landscape 13teggin
 
Improving Education by Learning Analtyics (EADTU-EU Summit 2017)
Improving Education by Learning Analtyics (EADTU-EU Summit 2017)Improving Education by Learning Analtyics (EADTU-EU Summit 2017)
Improving Education by Learning Analtyics (EADTU-EU Summit 2017)EADTU
 
Workplace Simulated Courses - Course Technology Computing Conference
Workplace Simulated Courses - Course Technology Computing ConferenceWorkplace Simulated Courses - Course Technology Computing Conference
Workplace Simulated Courses - Course Technology Computing ConferenceCengage Learning
 
Testing Taxonomies: Beyond Card Sorting
Testing Taxonomies: Beyond Card SortingTesting Taxonomies: Beyond Card Sorting
Testing Taxonomies: Beyond Card SortingDave Cooksey
 
Strategies for Writing and Submitting an Effective ISTE Conference Submission
Strategies for Writing and Submitting an Effective ISTE Conference SubmissionStrategies for Writing and Submitting an Effective ISTE Conference Submission
Strategies for Writing and Submitting an Effective ISTE Conference SubmissionChris O'Neal
 
ETUG spring workshop 2014: Design studio presentation
ETUG spring workshop 2014: Design studio presentationETUG spring workshop 2014: Design studio presentation
ETUG spring workshop 2014: Design studio presentationsandrarru
 
Research report Qualitative Psychology
Research report Qualitative PsychologyResearch report Qualitative Psychology
Research report Qualitative PsychologyDr. Chinchu C
 
Implementing an ePortfolio into the Bachelor of Nursing - Emma Collins (Otago...
Implementing an ePortfolio into the Bachelor of Nursing - Emma Collins (Otago...Implementing an ePortfolio into the Bachelor of Nursing - Emma Collins (Otago...
Implementing an ePortfolio into the Bachelor of Nursing - Emma Collins (Otago...ePortfolios Australia
 
Look who's talking
Look who's talkingLook who's talking
Look who's talkingcathyguyer
 
Lighthouse @ Anglia Ruskin - Matt East and Rodney Tamblyn | Talis Insight Eur...
Lighthouse @ Anglia Ruskin - Matt East and Rodney Tamblyn | Talis Insight Eur...Lighthouse @ Anglia Ruskin - Matt East and Rodney Tamblyn | Talis Insight Eur...
Lighthouse @ Anglia Ruskin - Matt East and Rodney Tamblyn | Talis Insight Eur...Talis
 
Introduction to Intranet Planning
Introduction to Intranet PlanningIntroduction to Intranet Planning
Introduction to Intranet PlanningHaaron Gonzalez
 
University teachers' experiences of, and impact on academic practice, of a co...
University teachers' experiences of, and impact on academic practice, of a co...University teachers' experiences of, and impact on academic practice, of a co...
University teachers' experiences of, and impact on academic practice, of a co...Vicki Dale
 

Similar to Explore and have fun with TensorFlow: An introductory to TensorFlow (20)

That conference 2016 deconstructing the scaled agile framework
That conference 2016   deconstructing the scaled agile frameworkThat conference 2016   deconstructing the scaled agile framework
That conference 2016 deconstructing the scaled agile framework
 
Mapping roameractivitiestotactics framework
Mapping roameractivitiestotactics frameworkMapping roameractivitiestotactics framework
Mapping roameractivitiestotactics framework
 
Data carpentry instructor-onboarding
Data carpentry instructor-onboardingData carpentry instructor-onboarding
Data carpentry instructor-onboarding
 
Data carpentry run-a-workshop
Data carpentry run-a-workshopData carpentry run-a-workshop
Data carpentry run-a-workshop
 
Tech landscape 13
Tech landscape 13Tech landscape 13
Tech landscape 13
 
Improving Education by Learning Analtyics (EADTU-EU Summit 2017)
Improving Education by Learning Analtyics (EADTU-EU Summit 2017)Improving Education by Learning Analtyics (EADTU-EU Summit 2017)
Improving Education by Learning Analtyics (EADTU-EU Summit 2017)
 
Workplace Simulated Courses - Course Technology Computing Conference
Workplace Simulated Courses - Course Technology Computing ConferenceWorkplace Simulated Courses - Course Technology Computing Conference
Workplace Simulated Courses - Course Technology Computing Conference
 
Testing Taxonomies: Beyond Card Sorting
Testing Taxonomies: Beyond Card SortingTesting Taxonomies: Beyond Card Sorting
Testing Taxonomies: Beyond Card Sorting
 
Strategies for Writing and Submitting an Effective ISTE Conference Submission
Strategies for Writing and Submitting an Effective ISTE Conference SubmissionStrategies for Writing and Submitting an Effective ISTE Conference Submission
Strategies for Writing and Submitting an Effective ISTE Conference Submission
 
WebQuest
WebQuestWebQuest
WebQuest
 
ETUG spring workshop 2014: Design studio presentation
ETUG spring workshop 2014: Design studio presentationETUG spring workshop 2014: Design studio presentation
ETUG spring workshop 2014: Design studio presentation
 
Graduate interns
Graduate internsGraduate interns
Graduate interns
 
Research report Qualitative Psychology
Research report Qualitative PsychologyResearch report Qualitative Psychology
Research report Qualitative Psychology
 
Implementing an ePortfolio into the Bachelor of Nursing - Emma Collins (Otago...
Implementing an ePortfolio into the Bachelor of Nursing - Emma Collins (Otago...Implementing an ePortfolio into the Bachelor of Nursing - Emma Collins (Otago...
Implementing an ePortfolio into the Bachelor of Nursing - Emma Collins (Otago...
 
Look who's talking
Look who's talkingLook who's talking
Look who's talking
 
Lighthouse @ Anglia Ruskin - Matt East and Rodney Tamblyn | Talis Insight Eur...
Lighthouse @ Anglia Ruskin - Matt East and Rodney Tamblyn | Talis Insight Eur...Lighthouse @ Anglia Ruskin - Matt East and Rodney Tamblyn | Talis Insight Eur...
Lighthouse @ Anglia Ruskin - Matt East and Rodney Tamblyn | Talis Insight Eur...
 
SlideShare in the Classroom
SlideShare in the ClassroomSlideShare in the Classroom
SlideShare in the Classroom
 
2 Day Android Workshop
2 Day Android Workshop2 Day Android Workshop
2 Day Android Workshop
 
Introduction to Intranet Planning
Introduction to Intranet PlanningIntroduction to Intranet Planning
Introduction to Intranet Planning
 
University teachers' experiences of, and impact on academic practice, of a co...
University teachers' experiences of, and impact on academic practice, of a co...University teachers' experiences of, and impact on academic practice, of a co...
University teachers' experiences of, and impact on academic practice, of a co...
 

More from Poo Kuan Hoong

Build an efficient Machine Learning model with LightGBM
Build an efficient Machine Learning model with LightGBMBuild an efficient Machine Learning model with LightGBM
Build an efficient Machine Learning model with LightGBMPoo Kuan Hoong
 
Tensor flow 2.0 what's new
Tensor flow 2.0  what's newTensor flow 2.0  what's new
Tensor flow 2.0 what's newPoo Kuan Hoong
 
The future outlook and the path to be Data Scientist
The future outlook and the path to be Data ScientistThe future outlook and the path to be Data Scientist
The future outlook and the path to be Data ScientistPoo Kuan Hoong
 
Data Driven Organization and Data Commercialization
Data Driven Organization and Data CommercializationData Driven Organization and Data Commercialization
Data Driven Organization and Data CommercializationPoo Kuan Hoong
 
TensorFlow and Keras: An Overview
TensorFlow and Keras: An OverviewTensorFlow and Keras: An Overview
TensorFlow and Keras: An OverviewPoo Kuan Hoong
 
Deep Learning with Microsoft R Open
Deep Learning with Microsoft R OpenDeep Learning with Microsoft R Open
Deep Learning with Microsoft R OpenPoo Kuan Hoong
 
Microsoft APAC Machine Learning & Data Science Community Bootcamp
Microsoft APAC Machine Learning & Data Science Community BootcampMicrosoft APAC Machine Learning & Data Science Community Bootcamp
Microsoft APAC Machine Learning & Data Science Community BootcampPoo Kuan Hoong
 
Customer Churn Analytics using Microsoft R Open
Customer Churn Analytics using Microsoft R OpenCustomer Churn Analytics using Microsoft R Open
Customer Churn Analytics using Microsoft R OpenPoo Kuan Hoong
 
Machine Learning and Deep Learning with R
Machine Learning and Deep Learning with RMachine Learning and Deep Learning with R
Machine Learning and Deep Learning with RPoo Kuan Hoong
 
The path to be a data scientist
The path to be a data scientistThe path to be a data scientist
The path to be a data scientistPoo Kuan Hoong
 
MDEC Data Matters Series: machine learning and Deep Learning, A Primer
MDEC Data Matters Series: machine learning and Deep Learning, A PrimerMDEC Data Matters Series: machine learning and Deep Learning, A Primer
MDEC Data Matters Series: machine learning and Deep Learning, A PrimerPoo Kuan Hoong
 
Big Data Malaysia - A Primer on Deep Learning
Big Data Malaysia - A Primer on Deep LearningBig Data Malaysia - A Primer on Deep Learning
Big Data Malaysia - A Primer on Deep LearningPoo Kuan Hoong
 
Handwritten Recognition using Deep Learning with R
Handwritten Recognition using Deep Learning with RHandwritten Recognition using Deep Learning with R
Handwritten Recognition using Deep Learning with RPoo Kuan Hoong
 
An Introduction to Deep Learning
An Introduction to Deep LearningAn Introduction to Deep Learning
An Introduction to Deep LearningPoo Kuan Hoong
 
Machine learning and big data
Machine learning and big dataMachine learning and big data
Machine learning and big dataPoo Kuan Hoong
 
DSRLab seminar Introduction to deep learning
DSRLab seminar   Introduction to deep learningDSRLab seminar   Introduction to deep learning
DSRLab seminar Introduction to deep learningPoo Kuan Hoong
 
Context Aware Road Traffic Speech Information System from Social Media
Context Aware Road Traffic Speech Information System from Social MediaContext Aware Road Traffic Speech Information System from Social Media
Context Aware Road Traffic Speech Information System from Social MediaPoo Kuan Hoong
 
Virtual Interaction Using Myo And Google Cardboard (slides)
Virtual Interaction Using Myo And Google Cardboard (slides)Virtual Interaction Using Myo And Google Cardboard (slides)
Virtual Interaction Using Myo And Google Cardboard (slides)Poo Kuan Hoong
 
A Comparative Study of HITS vs PageRank Algorithms for Twitter Users Analysis
A Comparative Study of HITS vs PageRank Algorithms for Twitter Users AnalysisA Comparative Study of HITS vs PageRank Algorithms for Twitter Users Analysis
A Comparative Study of HITS vs PageRank Algorithms for Twitter Users AnalysisPoo Kuan Hoong
 
Towards Auto-Extracting Car Park Structures: Image Processing Approach on Low...
Towards Auto-Extracting Car Park Structures: Image Processing Approach on Low...Towards Auto-Extracting Car Park Structures: Image Processing Approach on Low...
Towards Auto-Extracting Car Park Structures: Image Processing Approach on Low...Poo Kuan Hoong
 

More from Poo Kuan Hoong (20)

Build an efficient Machine Learning model with LightGBM
Build an efficient Machine Learning model with LightGBMBuild an efficient Machine Learning model with LightGBM
Build an efficient Machine Learning model with LightGBM
 
Tensor flow 2.0 what's new
Tensor flow 2.0  what's newTensor flow 2.0  what's new
Tensor flow 2.0 what's new
 
The future outlook and the path to be Data Scientist
The future outlook and the path to be Data ScientistThe future outlook and the path to be Data Scientist
The future outlook and the path to be Data Scientist
 
Data Driven Organization and Data Commercialization
Data Driven Organization and Data CommercializationData Driven Organization and Data Commercialization
Data Driven Organization and Data Commercialization
 
TensorFlow and Keras: An Overview
TensorFlow and Keras: An OverviewTensorFlow and Keras: An Overview
TensorFlow and Keras: An Overview
 
Deep Learning with Microsoft R Open
Deep Learning with Microsoft R OpenDeep Learning with Microsoft R Open
Deep Learning with Microsoft R Open
 
Microsoft APAC Machine Learning & Data Science Community Bootcamp
Microsoft APAC Machine Learning & Data Science Community BootcampMicrosoft APAC Machine Learning & Data Science Community Bootcamp
Microsoft APAC Machine Learning & Data Science Community Bootcamp
 
Customer Churn Analytics using Microsoft R Open
Customer Churn Analytics using Microsoft R OpenCustomer Churn Analytics using Microsoft R Open
Customer Churn Analytics using Microsoft R Open
 
Machine Learning and Deep Learning with R
Machine Learning and Deep Learning with RMachine Learning and Deep Learning with R
Machine Learning and Deep Learning with R
 
The path to be a data scientist
The path to be a data scientistThe path to be a data scientist
The path to be a data scientist
 
MDEC Data Matters Series: machine learning and Deep Learning, A Primer
MDEC Data Matters Series: machine learning and Deep Learning, A PrimerMDEC Data Matters Series: machine learning and Deep Learning, A Primer
MDEC Data Matters Series: machine learning and Deep Learning, A Primer
 
Big Data Malaysia - A Primer on Deep Learning
Big Data Malaysia - A Primer on Deep LearningBig Data Malaysia - A Primer on Deep Learning
Big Data Malaysia - A Primer on Deep Learning
 
Handwritten Recognition using Deep Learning with R
Handwritten Recognition using Deep Learning with RHandwritten Recognition using Deep Learning with R
Handwritten Recognition using Deep Learning with R
 
An Introduction to Deep Learning
An Introduction to Deep LearningAn Introduction to Deep Learning
An Introduction to Deep Learning
 
Machine learning and big data
Machine learning and big dataMachine learning and big data
Machine learning and big data
 
DSRLab seminar Introduction to deep learning
DSRLab seminar   Introduction to deep learningDSRLab seminar   Introduction to deep learning
DSRLab seminar Introduction to deep learning
 
Context Aware Road Traffic Speech Information System from Social Media
Context Aware Road Traffic Speech Information System from Social MediaContext Aware Road Traffic Speech Information System from Social Media
Context Aware Road Traffic Speech Information System from Social Media
 
Virtual Interaction Using Myo And Google Cardboard (slides)
Virtual Interaction Using Myo And Google Cardboard (slides)Virtual Interaction Using Myo And Google Cardboard (slides)
Virtual Interaction Using Myo And Google Cardboard (slides)
 
A Comparative Study of HITS vs PageRank Algorithms for Twitter Users Analysis
A Comparative Study of HITS vs PageRank Algorithms for Twitter Users AnalysisA Comparative Study of HITS vs PageRank Algorithms for Twitter Users Analysis
A Comparative Study of HITS vs PageRank Algorithms for Twitter Users Analysis
 
Towards Auto-Extracting Car Park Structures: Image Processing Approach on Low...
Towards Auto-Extracting Car Park Structures: Image Processing Approach on Low...Towards Auto-Extracting Car Park Structures: Image Processing Approach on Low...
Towards Auto-Extracting Car Park Structures: Image Processing Approach on Low...
 

Recently uploaded

MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 

Recently uploaded (20)

MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 

Explore and have fun with TensorFlow: An introductory to TensorFlow