Coders Packet

Listing of packets of source code submitted by coders

Greatest common divisor and LCM of two number by using Python

Greatest common divisor naive algorithm and using Euclid,s lemma for faster algorithm by recursion of very high number. And also exploiting the relation between GCD and LCM in Python

Alarm in Python

This project is about creating the beep sound of an Alarm in Python 3. Set the duration after which you want your alarm to ring and you will hear the beep sound at the desired time.

Random Password Generator using Tkinter in Python

This project is about creating a random password generator in Python 3 using Tkinter. Just give the length of the password you want to generate and you'll get a random password.

Spam Email Detector in Python

This Python packett is about detecting whether an e-mail is spam or ham (not spam) using the Naive Bayes algorithm and supervised Machine Learning techniques.

Basic Home Automation by Voice Control using Arduino Uno

Build your own Voice-controlled smart home using "Basic Home Automation by Voice Control" project which uses Arduino Uno board, Arduino IDE Software, Relay module, Bluetooth Module, Breadboard.

Student Record Management System Using C++

This is a student record management system project, which enables you to create, read, modify, and delete student Records. It is a C++ program for education establishments to manage student data.

American Sign Language Recognition in Python using Deep Learning

In This Tutorial, we will be going to figure out how to apply transfer learning models vgg16 and resnet50 to perceive communication via gestures.

House Price Prediction in Python Using Machine Learning

In this tutorial, we will learn how to do exploratory data analysis, feature engineering, and apply all the regression model to house prices using Python.

Understanding and Implementing AdaBoost Algorithm in Python

AdaBoost algorithm intuition and implementation in Python on Iris dataset for multi-class classification

Python program to push zeroes to the end of an array

An algorithm that takes an array and moves all of the zeros to the end, preserving the order of the other elements. This is a stable technique.

Ads CTR Optimization using Upper Confidence Bound in Python

Algorithm and Python Implementation for Ads CTR using Reinforcement Learning - Upper Confidence Bound Algorithm.

Grocery Items Recommendation using Apriori Algorithm in Python - Association Rule Learning

This project focuses on recommending grocery items to a customer that is most frequently bought together, given a dateset of transactions by customers of a store.