Back to Blog

tensorflow tutorial
Data Science

Tensorflow 1.0 vs. Tensorflow 2.0: What’s the Difference?

6 minute read | October 27, 2021
Sakshi Gupta

Written by:
Sakshi Gupta

Ready to launch your career?

TensorFlow 1.0 vs TensorFlow 2.0 has been the point of focus for data learning enthusiasts across the world ever since Google released TensorFlow 2.0. Google Brain launched TensorFlow 1.0 in 2017, whereas the updated version i.e TensorFlow 2.0’s release date was September 30, 2019. TensorFlow quickly became the most popular open-source ML library. And now with the release of TensorFlow 2.0, even beginners can execute deep learning tasks.

Here are some TensorFlow facts:

  • TensorFlow is transforming all genres of industries including pharma, healthcare, banking, or agriculture.
  • It has played a huge role in enabling companies to leverage artificial intelligence and thereby make their products/services smarter than ever before.
  • All the industry giants ranging from CocaCola, Airbnb, Airbus, Dropbox, LinkedIn, PayPal, Twitter, and Uber vouch for this software library.
  • Image recognition, speech recognition, sentiment analysis, object detection, and video detection are some of its most popular use cases.

Such is the utility of TensorFlow! Having worked thoroughly on the drawbacks of TensorFlow 1.0, the team released a better, smarter, and an easier version i.e TensorFlow 2.0. And hence this article will deal with TensorFlow 1.0 vs TensorFlow 2.0 – and will answer all your related questions.

Tensorflow 1.0 vs Tensorflow 2.0: Understanding the Difference

Let’s begin with the basics by understanding each individually.

What is TensorFlow?

TensorFlow is an end-to-end open-source machine learning platform that contains comprehensive tools, libraries and community resources. It is meant for developers, data scientists and researchers to build and deploy applications powered by machine learning. TensorFlow was essentially built to scale, developed by Google Brain team, TensorFlow accelerates ML and deep neural network research. It can run on multiple CPUs or GPUs and mobile operating systems. Also, it has several wrappers in languages like Python, C++, or Java.

What is TensorFlow 2.0?

TensorFlow 2.0 is an updated version of TensorFlow that has been designed with a focus on simple execution, ease of use, and developer’s productivity. TensorFlow 2.0 makes the development of data science and machine learning applications even easier. With updated features like tight integration of Keras, default Eager execution, and Pythonic function execution, there have been considerable and successful efforts to make the experience of developing applications more familiar for Python developers. 

The TensorFlow team has also invested heavily in low-level API this time. All the ops that are used internally are now exported and inheritable interfaces for concepts such as variables and checkpoints are provided. So, as you build onto the internals of TensorFlow, you won’t have to rebuild TensorFlow.

TensorFlow 2.0 Tutorial: Stepwise Installation Guide

Google Colab:

  1. Open Google Colab on the link. https://colab.research.google.com/.
  2. Create a ‘New Python 3 Notebook’.
  3. Connect to GPU/CPU.
  4. Check if you’re using 2.0 version. If not, uninstall using !pip uninstall TensorFlow and then install it using !pip install TensorFlow

Get To Know Other Data Science Students

Diana Xie

Diana Xie

Machine Learning Engineer at IQVIA

Read Story

Nick Lenczewski

Nick Lenczewski

Data Scientist at Ovative Group

Read Story

Isabel Van Zijl

Isabel Van Zijl

Lead Data Analyst at Kinship

Read Story

TensorFlow 1.0 vs TensorFlow 2.0: What is the difference?

(As per the TensorFlow team) It is important to understand that there is no battle of TensorFlow 1.0 vs TensorFlow 2.0 as TensorFlow 2.0 is the updated version and hence clearly better and smarter. It was built keeping in mind the drawbacks of TensorFlow 1.0 which was particularly hard to use and understand.

Here’s the story:

Beginners and experts used to be disheartened seeing the exhausting TensorFlow code. Why? Because its logic of coding was vastly different from that of other libraries. This led to the popularisation of higher-level packages such as Pytorch and Keras. Both Keras and TensorFlow are open-source and in 2017, Keras was integrated into TensorFlow. However, even after this integration, TensorFlow was still losing popularity. This was until 2019 when TensorFlow 2.0 came into the picture. Through TensorFlow 2.0, the team aimed to catch up with the higher-level programming demand. But instead of creating their high-level syntax, the developers went on to borrow that of Keras. So, now the TensorFlow 2.0 has the versatility of Tensorflow 1.0 and the simplicity of Keras.

Major Changes in the two Libraries

  • Keras as the high-level API: As mentioned earlier, Google has incorporated Keras as a high-level API in TensorFlow 2.0 to build and train ML models. This will make it easy for users to get started with TensorFlow.
  • Compatible TensorFlow ecosystem: In TensorFlow 2.0, as soon as the training for a model is completed, it can be deployed in production on other platforms. TensorFlow Lite, TensorFlow.js, and TensorFlow Extended are the deployment libraries available for users.
  1. TensorFlow.js – JavaScript library to train and deploy models in the browser and on Node.js.
  2. TensorFlow Lite – Lightweight library to deploy models on mobile and embedded devices.
  3. TensorFlow Extended – An end-to-end platform to prepare data, train, validate, and deploy models in large production environments.

Also, there is a conversion tool provided to simplify migration from TensorFlow 1.0 to TensorFlow 2.0. This tool will be used to update the Python code to use compatible APIs where possible. It will also highlight the areas where your code cannot be automatically converted.

  • API Cleanup: In TensorFlow 2.0, APIs have either gone or moved. Some of them have also been replaced with their 2.0 equivalents that are tf.summary, tf.keras.metrics, and tf.keras.optimizers. To automatically apply these renames, you need to use the v2 upgrade script.
  • Default Eager execution: In TensorFlow 1.0, the operation is performed inside a session. A session is an environment wherein the objects are executed. So, if you had to add two constants, TensorFlow 1.0 wouldn’t give you the results until you performed it inside a session. But with TensorFlow 2.0, you can do it directly. That’s Eager Execution.

TensorFlow 1.0 code

a = tf.constant(5)
b = tf.constant(4)
c = a + b
with tf.Session() as sess:
print(sess.run(c))

Simplified TensorFlow 2.0 code because of Eager Execution:

a = tf.constant(5)
b = tf.constant(4)
c = a + b
print(c)

  • No more globals: TensorFlow relied on implicitly global namespaces. So, what happened is – if you called tf.variable(), it would be put into the default graph. And even if you lose the Python variable pointing to it, it would remain there nonetheless. You could only recover that tf.variable if you knew the name it was created with. Now, since the user doesn’t control the creation of the variable, it was extremely difficult to recover it. In TensorFlow 2.0, developers have taken care of this issue. If you lose track of tf.variable in TensorFlow 2.0, it will be garbage collected.
  • Functions, not sessions: A session.run() call is very similar to a function call: Users state the inputs and the function to be called and get the outputs. In TensorFlow 2.0, however, users can decorate a Python function by using tf.function(). This will mark it for JIT compilation and TensorFlow will run it as a single graph. Through this, TensorFlow 2.0 can leverage the performance and portability of the graph mode completely as the function can be optimised (node pruning, kernel fusion, etc.) and exported/reimported.
  • Ease for researchers: TensorFlow 2.0 is for all – beginners and researchers. It is however great for advanced-level users. The extensions such as Ragged Tensors, TensorFlow Probability, and Tensor2Tensor will be especially useful. TensorFlow 2.0 comes with default Eager execution which will deliver clear messages and aid researchers to debug any issue. Also, researchers will be able to jump to the source of the error in the original code.

Now that you here and have a fair idea of TensorFlow and TensorFlow 1.0 vs TensorFlow 2.0, I am assuming you’re one of our deep learning enthusiasts. And if this interests you, I have a whole world of deep learning for you to get your basics on point. Springboard’s courses on data sciencedata analytics, and Artificial Intelligence/Machine Learning are 1:1 mentoring-led and project-based. The best part is they are industry focussed and job-oriented especially designed for technology enthusiasts, like you, to serve you with a career that matters. 

Since you’re here…
Curious about a career in data science? Experiment with our free data science learning path, or join our Data Science Bootcamp, where you’ll get your tuition back if you don’t land a job after graduating. We’re confident because our courses work – check out our student success stories to get inspired.

About Sakshi Gupta

Sakshi is a Managing Editor at Springboard. She is a technology enthusiast who loves to read and write about emerging tech. She is a content marketer with experience in the Indian and US markets.