Hussain Nasir Khan

A programmer, writer, and engineer. I have a deep interest in computer vision and artificial intelligence.

Convolutional Neural Network

Convolutional Neural Network (CNN) | TensorFlow

This deep-learning tutorial will teach you how to implement a convolutional neural network using TensorFlow. The convolutional neural network is an architecture that is used for different tasks such as image classification, image recognition, and object detection. This tutorial is focused on image classification. There are many datasets available for image classification but in this …

Convolutional Neural Network (CNN) | TensorFlow Read More »

Convert string to list of characters Python

Convert string to list of characters Python

In this Python string tutorial, you will learn how to convert a string to a list of characters in Python. Output: [‘M’, ‘a’, ‘c’, ‘h’, ‘i’, ‘n’, ‘e’] <class ‘list’> Free learning resources: AiHints, CodeAllow

Convert string to list of words Python

Convert string to list of words Python

In this Python string tutorial, you will learn how to convert a string to a list of words in Python. Output: [‘AiHints’, ‘is’, ‘a’, ‘website’] <class ‘list’> Free learning resources: AiHints, CodeAllow

Convert string to tuple Python

Convert string to tuple Python

In this Python string tutorial, you will learn how to convert a string to a tuple in Python. Output: (‘A’, ‘i’, ‘H’, ‘i’, ‘n’, ‘t’, ‘s’) <class ‘tuple’> Free learning resources: AiHints, CodeAllow

Convert string to date Python

Convert string to date Python

In this Python string tutorial, you will learn how to convert string to date in Python. Output: 2021-09-20 <class ‘datetime.date’> Free learning resources: AiHints, CodeAllow