• Stars
    star
    1
  • Language
    Python
  • License
    MIT License
  • Created over 3 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

I have create a simple todo list application with the django framework using python

More Repositories

1

Complete-C-Programming

C tutorial
C
10
star
2

LU-DataScience

LetsUpgrade data science essential program
Jupyter Notebook
5
star
3

Python

In this major python concept has been covered.
Python
3
star
4

LetsUpgrade-Python-Essential

LetsUpgrade Python Essential Assignment
Jupyter Notebook
2
star
5

Facial-landmark-detection-using-Keras

Facial keypoints (also called facial landmarks) are the small blue-green dots shown on each of the faces in the image above - there are 5 keypoints marked in each image. They mark important areas of the face - the eyes, corners of the mouth, the nose, etc. Facial keypoints can be used in a variety of machine learning applications from face and emotion recognition to commercial applications like the image filters popularized by Snapchat. Facial keypoint detection is a regression problem.
Python
2
star
6

VH-21-Maayon-13

Problem Statement : Solving the problem of traditional land registry system and making land registry system in blockchain in which the record will be digitalized and stored permanently for whenever needed Abstract : Traditional land registry system need lot of paper works and human interaction in which the data can be lost or mis-entred and there is lot of chance for the data to be changed by the unauthorised persons thus our proposed system will ensure all the records and transaction which is happening in the land registry system will be recorded and data will be stored in the blockchain network permanently once the data stored in the blockchain then there is no way to change tha data value thus it provide a huge support to tamper proof data. The records or transaction in the Blockchain network can be verified by the hash value which is generated at the every instance of time thus accountability of the data will be ensured. Only authorised user will able to make a transaction only if the user satifics the condition of the smart contract.
Solidity
2
star
7

Face-Recognition-using-Siamese-Network

Deep learning algorithms fail to work well if we have only one training example. One-shot learning is a classification or object categorization task in which one or a few examples are used to classify many new examples. The principle behind one-shot learning is Humans learn new concepts with very little supervision. ### Problem in COnvNet - A small training set is really not enough to train a robust neural network for this task. The feature vectors trained do not contain important information that can be used for the recognition of future images. - Retraining the ConvNet every time the number of classes or dataset is increased is way too time and resource consuming. ### Solutions to one-shot learning #### 1. Siamese network for one-shot learning ![image-2.png](attachment:image-2.png) #### Siamese networks are based on a similarity function, which does not require extensive training #### Takes input two imagesโ€”one being the actual image and other the candidate imageโ€”and outputs the similarity between the two. The two input images, if very similar, output = lower value The two input images, if not similar, output = Higher value degree of difference between the two images is compared with the threshold value(๐œ) (which is a hyperparameter), if degree of difference between 2 image < threshold -> output = same person if degree of difference between 2 image > threshold -> output = different person #### Both the images to be compared are passed through the same networks, called sister networks, having the same parameters and shared weights. images are passed through a sequence of convolutional, pooling, and fully connected layers, and end up with a feature vector of a fixed size, say, 128 denoted by f(x1) as an encoding of the input image x1.
Jupyter Notebook
2
star
8

AgriFoodSupply.sol

Agriculture Food Supply chain using smart contracts in ethereum blockchain
Solidity
1
star
9

face_mask_detection_using_mobileNetv2

Python
1
star
10

HTML

In this complete HTML tags and concepts will be covered from scratch.
HTML
1
star
11

Ajay2521

Config files for my GitHub profile.
1
star
12

LU-Linux

Linux administration
1
star
13

Tutorial-on-CPlusPlus-

C++
1
star
14

Competitive-Programming

This contains the competitive coding from the famous sites like LeetCode, GeeksforGeeks, HackerRank and HackerEarth
C++
1
star
15

Python-Projects

My python projects.
Python
1
star
16

Shellscript

In this Shellscript programming language which is used in Unix / Linux has been explained.
1
star
17

JS-Assignment

LetsUpgrade JavaScript Assignment.
JavaScript
1
star
18

AgriFoodSupply

JavaScript
1
star
19

Game-Of-Life-In-Go-lang

Go
1
star
20

Java-Essential-LU

Java essential course assignment from LetsUpgrade.
Java
1
star
21

Student-Registration-System-using-Java-and-MySql

Student Registration System using Java and MySql
Java
1
star
22

REDIS-HANDS-ON

Here you can able to get the hands on experience in REDIS.
Python
1
star
23

Analog-to-digital-clock-using-opencv-python

The application will read the analog clock image from the specified image path and then the it process the image to convert the analog clock image data into the digital values and display the digital reading using tkinter
Jupyter Notebook
1
star
24

Emoji-using-python-gui

I have used the python tkinter module and python emojis module to list some emojis name and allows user to choice any one option from the above list. Then the function is used to create a secondary GUI windows which is used to print the selected emoji.
Python
1
star
25

Lottery-smartContract

In this lottery smart contract has been designed
Solidity
1
star
26

facial-landmark-detection-using-MTCNN

Facial keypoints (also called facial landmarks) are the small blue-green dots shown on each of the faces in the image above - there are 15 keypoints marked in each image. They mark important areas of the face - the eyes, corners of the mouth, the nose, etc. Facial keypoints can be used in a variety of machine learning applications from face and emotion recognition to commercial applications like the image filters popularized by Snapchat.
Python
1
star
27

RateLimiter-using-Sliding-Window

Create a rate limiter program using a sliding window which allows/blocks request based on timestamps. Program will receive sequence of timestamps via arguments. For each timestamp it has to output allowed/blocked based on the sliding window. Sliding window to have 2 configurations, R: maximum number of requests allowed in sliding window S: sliding window time period in seconds
Java
1
star