SlideShare a Scribd company logo
Getting started with
TensorFlow
Gustavo García
@anarchyco
Machine Learning is everywhere
Getting started with TensorFlow
TensorFlow is an open source library for numerical
computation, specializing in machine learning
applications
TensorFlow Hello World
Machine Learning Pseudocode
labeled_data = ... // f.e. X: square_meters -> y: house_prices
model = ... // f.e. y = B * x + A
// Training
do N times: // epochs
for d in labeled_data: // usually in batches
y_predicted = model.predict(d)
model.adjust(y_predicted - y, learning_rate)
// Inference
model.predict(unseen_data)
Getting started with TensorFlow
Deep Neural Network with TensorFlow
Deep Neural Network with TensorFlow
Deep Neural Network with TensorFlow
Deep Neural Network with TensorFlow
Deep Neural Network with TensorFlow
Deep Neural Network with TensorFlow
Getting started with TensorFlow
Getting started with TensorFlow
Getting started with TensorFlow
Getting started with TensorFlow
Getting started with TensorFlow
Real world TensorFlow
1. Find a model to the type of problem you want to solve
2. Obtain as much good data as possible
3. Train the model (or retrain)
4. Save the model and deploy it
Getting started with TensorFlow
Demo
The End

More Related Content

PDF
How to use tensorflow
PDF
Introduction to Python and Matplotlib
PPT
13: Practical Artificial Intelligence & Machine Learning (Arturo Servin)
PPT
Practical Artificial Intelligence & Machine Learning (Arturo Servin)
PPTX
Dynamic memory allocation
ODP
Tensorflow for Beginners
PPTX
Introduction To TensorFlow | Deep Learning Using TensorFlow | CloudxLab
PDF
Introduction to TensorFlow
How to use tensorflow
Introduction to Python and Matplotlib
13: Practical Artificial Intelligence & Machine Learning (Arturo Servin)
Practical Artificial Intelligence & Machine Learning (Arturo Servin)
Dynamic memory allocation
Tensorflow for Beginners
Introduction To TensorFlow | Deep Learning Using TensorFlow | CloudxLab
Introduction to TensorFlow

Similar to Getting started with TensorFlow (20)

PDF
Introduction To Using TensorFlow & Deep Learning
PPTX
What is TensorFlow? | Introduction to TensorFlow | TensorFlow Tutorial For Be...
PDF
Overview of TensorFlow For Natural Language Processing
PDF
Machine Learning with TensorFlow 2
PDF
Language translation with Deep Learning (RNN) with TensorFlow
 
PDF
Introduction To TensorFlow | Deep Learning Using TensorFlow | TensorFlow Tuto...
PDF
TensorFlow example for AI Ukraine2016
PDF
Introduction to TensorFlow, by Machine Learning at Berkeley
PPTX
Neural Networks with Google TensorFlow
PDF
Tensorflow 2.0 and Coral Edge TPU
PDF
DyCode Engineering - Machine Learning with TensorFlow
PPTX
Tensorflow 101 @ Machine Learning Innovation Summit SF June 6, 2017
PDF
TensorFlow Tutorial | Deep Learning Using TensorFlow | TensorFlow Tutorial Py...
PDF
PyTorch for Deep Learning Practitioners
PPTX
TensorFlow Tutorial | Deep Learning With TensorFlow | TensorFlow Tutorial For...
PPTX
Neural networks and google tensor flow
PPTX
Machine Learning - Introduction to Tensorflow
PDF
Introduction to TensorFlow 2.0
PDF
The TensorFlow dance craze
Introduction To Using TensorFlow & Deep Learning
What is TensorFlow? | Introduction to TensorFlow | TensorFlow Tutorial For Be...
Overview of TensorFlow For Natural Language Processing
Machine Learning with TensorFlow 2
Language translation with Deep Learning (RNN) with TensorFlow
 
Introduction To TensorFlow | Deep Learning Using TensorFlow | TensorFlow Tuto...
TensorFlow example for AI Ukraine2016
Introduction to TensorFlow, by Machine Learning at Berkeley
Neural Networks with Google TensorFlow
Tensorflow 2.0 and Coral Edge TPU
DyCode Engineering - Machine Learning with TensorFlow
Tensorflow 101 @ Machine Learning Innovation Summit SF June 6, 2017
TensorFlow Tutorial | Deep Learning Using TensorFlow | TensorFlow Tutorial Py...
PyTorch for Deep Learning Practitioners
TensorFlow Tutorial | Deep Learning With TensorFlow | TensorFlow Tutorial For...
Neural networks and google tensor flow
Machine Learning - Introduction to Tensorflow
Introduction to TensorFlow 2.0
The TensorFlow dance craze
Ad

Recently uploaded (20)

PPTX
Welding lecture in detail for understanding
PDF
Digital Logic Computer Design lecture notes
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
Sustainable Sites - Green Building Construction
PPTX
OOP with Java - Java Introduction (Basics)
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
DOCX
573137875-Attendance-Management-System-original
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PDF
Well-logging-methods_new................
PPTX
Lecture Notes Electrical Wiring System Components
PPTX
CH1 Production IntroductoryConcepts.pptx
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Welding lecture in detail for understanding
Digital Logic Computer Design lecture notes
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Sustainable Sites - Green Building Construction
OOP with Java - Java Introduction (Basics)
CYBER-CRIMES AND SECURITY A guide to understanding
573137875-Attendance-Management-System-original
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
Well-logging-methods_new................
Lecture Notes Electrical Wiring System Components
CH1 Production IntroductoryConcepts.pptx
Automation-in-Manufacturing-Chapter-Introduction.pdf
Foundation to blockchain - A guide to Blockchain Tech
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Ad

Getting started with TensorFlow