Hussain Nasir Khan

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

Sklearn Multiple Linear Regression

Sklearn Multiple Linear Regression | Linear Regression

Linear Regression is a supervised machine-learning algorithm. Linear regression is used for regression problems. We can quickly implement multiple linear regression in Python using the Sklearn library. You have to follow the given steps to implement the multiple linear regression. In this tutorial, I will use this dataset for multiple linear regression. It is available …

Sklearn Multiple Linear Regression | Linear Regression Read More »

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