Posts from TensorFlow

Understanding the tf.function in TensorFlow

By Shreya Kulkarni

Hello coders, In this tutorial, we will look at the tf.function in the TensorFlow library in Python. We use the tf.function to make graphs out of our programs. In Python, it is use.... Read More

Understanding tf.Variable() in TensorFlow Python

By Shreya Kulkarni

Hey Everyone, We are going to take a look at the tf.Variable() function in TensorFlow and will understand this function with the help of this tutorial. Let’s first take a loo.... Read More

Depthwise Separable Convolutions using Tensorflow in Python

By Shreya Kulkarni

In this tutorial, we are going to learn about Depthwise Separable Convolution using the Tensorflow library in Python. Let’s first understand what we meant by Depthwise Convol.... Read More

Customer Churn Prediction Using ANN with TensorFlow in Python

By Kotha Narasimha Rao

In this tutorial, we will discuss customer churn prediction using ANN with TensorFlow deep learning Python module. We will use Keras API built on top of TensorFlow ANN:-Artificial .... Read More

Understanding tf.reduce_sum() function in TensorFlow

By Shreya Kulkarni

Hello everyone, This tutorial will explain how to use tf.reduce_sum() in TensorFlow. What is TensorFlow? TensorFlow is a Python library used in machine learning as well as deep lea.... Read More

Image Data Preprocessing using keras

By Kotha Narasimha Rao

In this tutorial, we will learn Image data preprocessing using Keras. All the codes are done in the Jupyter notebook using the Anaconda extension.  What is Data Preprocessing? Ima.... Read More

TensorFlow Binary Classification with examples in Python

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn Binary Classification using TensorFlow with examples. All the codes are done in a collab notebook We have a dataset of cats vs. d.... Read More

A comprehensive guide to Tokenizing with TF Text

By Amanpreet Singh

Overview The practice of splitting up a string into tokens is known as tokenization. These tokens are often words, numbers, and/or punctuation. The tensorflow_text package includes.... Read More

Data Augmentation of a Dog Image in Deep Learning

By Deepesh Singh

The quality, amount, and relevance of training data are all significant considerations in machine learning models, particularly deep learning models. One of the most prevalent prob.... Read More

Bird detection using TensorFlow in Python

By SHAUNAK LUNAWAT

Hello Everyone, In this machine learning tutorial, we will go through the process of understanding and developing a Bird Detection model using TensorFlow deep learning module in Py.... Read More