Data Science

Convolutional Neural Network In Python

A convolutional neural network (CNN) is a type of deep learning model that is commonly used for image classification and other tasks that involve analyzing visual data. CNNs are composed of multiple layers, including convolutional layers, pooling layers, and fully connected layers. The convolutional layers of a CNN are responsible for extracting features from the …

Convolutional Neural Network In Python Read More »

Fashion MNIST Image Classification Using KNN

Fashion-MNIST is a dataset of Zalando’s article images, consisting of a training set of 60,000 examples and atest set of 10,000 examples. Each example is a 28×28 grayscale image, associated with a label from 10classes.Each training and test example is assigned to one of the following labels: T-shirt/top, trousers, Pullover,Dress, Coat, Sandal, Shirt, Sneaker, Bag, …

Fashion MNIST Image Classification Using KNN Read More »

Distance Measure in Python

Computer Vision is one powerful tool that helps in predicting various tasks.In this blog, you will learn how to measure the distance between a person and a camera. step 1 download the Haarcasde classifier to detect faces in real-time (haarcascade_frontalface_default.xml). https://github.com/kipr/opencv/tree/master/data/haarcascades Code:

Run All Machine Learning models in Once

This library offers you the possibility to evaluate many machine learning models at the same time,using sk-learn and saving a lot of time and coding. In this blog, we will see how we can use multiple models at once for prediction using Lazy Predict library. CLASSIFICATION MODELS CLASSIFICATION MODELS CLASSIFICATION MODELS First, you need to …

Run All Machine Learning models in Once Read More »

Diagnosis for prediction of knee osteoarthritis using deep learning

In this blog, we learn how to diagnosis the prediction of X-rays knee classification using Convolutional neural network and then deploy the model using Web-based Flask application. Diagnosis for the prediction of knee osteoarthritis using deep learning techniques. The dataset consists of 1650 digital X-ray images of knee joint which are collected from well reputed …

Diagnosis for prediction of knee osteoarthritis using deep learning Read More »

YOLO object detection algorithm

YOLO (You only look once) is the state-of-the-art, real-time system built on deep learning for solving object detection problems. YOLO, a new approach to object detection. Prior work on object detection repurposes classifiers to perform detection. Instead, we frame object detection as a regression problem to spatially separated bounding boxes and associated class probabilities. A …

YOLO object detection algorithm Read More »

Direction to become a Machine Learning Expert

I have been through many people who ask me about How to become Machine learning experts and do we require a PhD degree to become machine learning engineers?  So before answering these questions I would like to briefly explain who is the machine learning Expert/Engineer? Who is ML Expert/Engineer? A Machine learning engineer is the …

Direction to become a Machine Learning Expert Read More »