All Blogs

Neural Networks

Introduction to Artificial Neural Networks (ANNs)

Artificial Neural Networks (ANNs), inspired by the human brain system, are based on a collection of units of neurons that are connected one to another to process and send information. A very basic or a simplest neural network composes of only a single neuron, some inputs and a bias b as illustrated in the following […]

Read article

Sentiment Analysis Using Keras Embedding Layer in TensorFlow 2.0

The sentiment analysis is a process of gaining an understanding of the people's or consumers' emotions or opinions about a product, service, person, or idea. By understanding consumers' opinions, producers can enhance the quality of their products or services to meet the needs of their customers.

Read article

The beginner’s guide to implementing YOLOv3 in TensorFlow 2.0 (part-4)

In part 3, we’ve created a python code to convert the file yolov3.weights into the TensorFlow 2.0 weights format. Now, we’re already in part 4, and this is our last part of this tutorial. In this part, we’re going to work on 3 files, utils.py, image.py and video.py. The file utils.py contains useful functions for […]

Read article

The beginner’s guide to implementing YOLOv3 in TensorFlow 2.0 (part-3)

In part 2, we’ve discovered how to construct the YOLOv3 network. In this part 3, we’ll focus on the file yolov3.weights. So, what we’re going to do in part is to load the weights parameters from the file yolov3.weights, then convert them into the TensorFlow 2.0 weights format. Just to remain you that, the file […]

Read article

The beginner’s guide to implementing YOLOv3 in TensorFlow 2.0 (part-2)

In part 1, we've discussed the YOLOv3 algorithm. Now, it's time to dive into the technical details of the Yolov3 implementation in Tensorflow 2.

Read article

The beginner’s guide to implementing YOLOv3 in TensorFlow 2.0 (part-1)

In this tutorial, I'll be sharing how to implement the YOLOv3 object detector using TensorFlow 2 in the simplest way. Without over complicating things, you will discover how easy is to build a YOLOv3 object detector in TensorFlow 2.

Read article
TensorFlow 2.0

Installing TensorFlow 2.0 in Anaconda Environment

TensorFlow is still one of the popular Deep learning frameworks. It has been used in many different fields of applications including handwritten digit classification, image recognition, object detection, word embeddings, and natural language processing (NLP). In September last year, 2019, Google finally announced the availability of the final release of TensorFlow 2.0. With eager execution […]

Read article