NumPy

Implementing an ANN model from scratch using Numpy

// Importing required librariesimport numpy as np// Preparing datasetx = np.array(,,])y = np.array(,,])// Defining the activation function# Activation function # Here we have now used sigmoid function that provides the output between 0 and...

t-SNE from Scratch (ft. NumPy)

I like to recommend fooling around with different values of the parameters (i.e., perplexity, learning rate, early exaggeration, etc.) to see how the answer differs (See the original paper and the scikit-learn documentation for...

Getting Began with NumPy and OpenCV for Computer Vision

Start Your Coding for Computer vision with PythonImporting OpenCV and Matplotlib libraryMatplotlib is a visualization library. It helps to visualise the image.Loading the image with OpenCV and visualize with matplotlibWe have now read the...

Face-Mask Detection using SVM — Intel oneAPI Optimised Scikit-Learn Library An easy explanation of how SVM works: Prerequisites: Installation of scikit-learn-intelex library: Dataset: Importing the Dataset and Converting it...

This model may also be implemented right into a computer vision model which may detect masks on a face in real-time.This project was showcased by (Myself) at organized by in partnership with , ,...

Recent posts

Popular categories

ASK ANA