Tag Archives: tensorflow

TensorFlow Neural Network Tutorial in Python

  TensorFlow Neural Network Tutorial in Python TensorFlow is an open-source library for machine learning applications. It’s the Google Brain’s second generation system, after replacing the close-sourced DistBelief, and is used by Google for both research and production applications. TensorFlow applications can be written in a few languages: Python, Go, Java and C. This post …

TensorFlow: Save and Restore Models in Python

  TensorFlow: Save and Restore Models in Python Training a deep neural network model could take quite some time, depending on the complexity of your model, the amount of data you have, the hardware you’re running your models on, etc. On most of the occasions you’ll need to save your progress to a file, so …