Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 394 Bytes

README.markdown

File metadata and controls

14 lines (11 loc) · 394 Bytes

TensorFlow Basics

Installation

sudo pip3 install tensorflow

>> import tensorflow
>> print(tensorflow.__version__)

1.4.0 (This is the latest version for the tf.)

Usage

  1. File tfbasics.ipynb has all the required syntax and tf usage.
  2. File tfmnist.ipynb is concentrated on training of Datasets using Convolutional Neural Network using tf based on MNIST algorithm.