TensorFlow Incorporates Keras
Written by Kay Ewbank   
Friday, 10 November 2017

There's a new version of Google TensorFlow with Keras included as part of the core API.

TensorFlow is Google's open source tool that can be used for a wide range of parallel computations, including implementing neural networks and other AI learning methods. It is designed to make it easier to work with neural networks and is seen as more general and easier than other options. The new release, 1.4 is now public, and the developers say it's is a big one.

The main headline improvement is the inclusion of Keras in TensorFlow core. Keras is a machine learning framework that is itself a neural-network API. It was written in Python and developed with a focus on enabling fast experimentation. Within TensorFlow, Keras has been integrated with other APIs, including the Estimator API.

Another improvement is that the Dataset API has graduated to core package status. The 1.4 version of the Dataset API also adds support for Python generators, and the developers strongly recommend using the Dataset API to create input pipelines for TensorFlow models because it has better features than the older API, performs better and is cleaner and easier to use. The Dataset API can be used to build complex input pipelines from simple, reusable pieces, taking data from an original source, then manipulating the data to make it suitable for further use. You can transform a dataset by chaining method calls on original object. The most common way to consume values from a Dataset is to make an iterator object that provides access to one element of the dataset at a time.
The developers say they're going to focus future development on the Dataset API rather than the older APIs.

The new version of TensorFlow also introduces a utility function, estimator.train_and_evaluate, that simplifies training, evaluation, and exporting Estimator models. It means you can use distributed execution for training and evaluation in addition to local execution.

 tensorflow

 

More Information

TensorFlow Website 

Related Articles

TensorFlow Reaches Version 1

//No Comment - Should I use TensorFlow, AI Real Estate & Lip Reading 

 R Gets Notebooks & TensorFlow 

TensorFlow Course On Kadenze 

TPU Is Google's Seven Year Lead In AI 

TensorFlow 0.8 Can Use Distributed Computing 

TensorFlow - Googles Open Source AI And Computation Engine 

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

 

Banner


The Art Of Computer Programming - A Great Present
15/12/2024

If you are looking for a programmer present this holiday season, there is one book, or set of books, that should be top of any list... Donald Knuth's The Art of Computer Programming.



.NET Community Toolkit Adds Partial Properties Support For MVVM
19/12/2024

Microsoft has announced version 8.4 of the .NET Community Toolkit, a collection of helpers and APIs that work for all .NET developers. The new version adds support for partial properties for the MVVM  [ ... ]


More News

 

espbook

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Friday, 10 November 2017 )