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 Introduction to TensorFlow for Beginners

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 Introduction to TensorFlow for Beginners (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

How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Hyundai Motor Group
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetEnjoy Anytime
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 

Recently uploaded (20)

How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 

Introduction to TensorFlow for Beginners