iykrichie / Building-Machine-Learning-Projects-with-TensorFlow

Building Machine Learning Projects with TensorFlow by Packt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Building Machine Learning Projects with TensorFlow

This is the code repository for Building Machine Learning Projects with TensorFlow, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

Instructions and Navigations

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

>>> import tensorflow as tf 
>>> tens1 = tf.constant([[[1,2],[2,3]],[[3,4],[5,6]]]) 
>>> sess = tf.Session()
>>> print sess.run(tens1)[1,1,0] 
5 
Software Required Hardware Required Operating System
Tensorflow 0.10, Jupyter Notebook Any x86 computer Ubuntu Linux 16.04

Related Products

About

Building Machine Learning Projects with TensorFlow by Packt

License:MIT License


Languages

Language:Jupyter Notebook 97.9%Language:Python 2.1%