admin

Generative Adversarial Network (GAN)

A Generative Adversarial Network (GAN) is a type of machine learning model that is composed of two parts: a generator and a discriminator. The generator model generates fake data, such as fake images, while the discriminator model attempts to classify the fake data as real or fake. The generator and discriminator models are trained together …

Generative Adversarial Network (GAN) Read More »

Machine Learning Basics with example python

Machine learning is a method of teaching computers to learn from data, without being explicitly programmed. It involves using algorithms to analyze and understand complex data, and to make predictions or decisions based on that data. There are many different types of machine learning, including supervised learning, unsupervised learning, and reinforcement learning. In supervised learning, …

Machine Learning Basics with example python Read More »

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 »

Face mask detection Gender Age prediction

As I mentioned in my previous blog, face mask detection uses deep learning techniques. In this blog, you will learn how to accurately detect the face mask and classify it into two categories (face mask and no face mask). For this purpose, first, we trained the deep learning CNN model (MOBILE NET) using the facemask …

Face mask detection Gender Age prediction Read More »

Realtime facemask detection | 100% accurately

Facemask detection using deep learning techniques. In this blog, you will learn how to accurately detect the face mask and classify it into two classes (face mask and no face mask). For this purpose First, we trained the deep learning CNN model(Resnet) using the facemask dataset. After training the model, we used that model with …

Realtime facemask detection | 100% accurately 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 »