hindi handwritten character reco

Hindi Handwritten Character Recognition using Constitutional Deep Neural Networks

Hindi Handwritten Character recognition using Constitutional Deep neural networks

Implementation Details:
1. Execute load_image_into_pickle.py file
a. It takes input of images from folder /Dataset
b. Image pre-process and feature extraction done
c. Saves output file in folder “dataset_pickles” as dataset_46_classes.pickle
2. Execute train_model.py
a. Gets input file dataset_46_classes.pickle
b. Convolutional deep neural network used for training model
c. output of train model is stored in folder /out
3. Execute predict_model.py
a. It takes input of test images from folder /test_images
b. Model compares with the weight model created during training “hhrc_nn.h5py”
c. Predicts output

Python demo

Hindi Handwritten Character Recognition using Convolutional Neural Networks (CNN)
sms spam detection using neural

SMS Spam Detection using Neural Networks

SMS spam detection using Recurrent Neural Networks

Implementation details:
1. SMS dataset is taken, which is represented with ham and Spam
2. Dataset is pre-processed
a.removed all stop word, stop words are given in separate file
b. converted type of sms to numeric ham-1 and spam-2
3. Pre-processed dataset is tokenized, applied pad_sequnce, then converted to vectors
4. Then they are trained by network model and creates output file h5, json
5. Test input is given to the model and predicts the output
6. Comparison and accuracy are arrived.

Python Demo

 

SMS spam detection using Recurrent Neural Networks
cricket team selection by data e

Cricket Team Selection by Data Envelopment Analysis

Cricket Team Selection by Data Envelopment Analysis

 

1. We have listed 15 players in playerid.csv file
2. We are collecting one year average value of batsman, bowler, all rounder
3. We are pre-processing data and storeing the corresponding csv files
4. DEA algorithm is used
input: name, X values (features), Y value (Average)
output: theta for player
5. According to the output theta value, we are getting the 11 players selected

Python Demo

 

Cricket Team Selection using Data Envelopment Analysis DEA Algorithm
efficient metric indexing for si

Efficient Metric Indexing for Similarity Search and Similarity Joins

Efficient Metric Indexing for Similarity Search and Similarity Joins
 
Implementation Details
 
1. We are using yelp dataset (as it has many features)
2. We are giving query (Restaurants, Phoenix,AZ)
3. Dataset are collected live from yelp data
4. Pre-processing the data to numeral
5. Plot in map
6. We have considered orgin (latitude, longitude), from this 2.5 km surrounded resuts are arrived for space filling
7. The results are plotted in map
8. We apply B+ tree on the space filled results (for the given features, similarity results are arrived)
9. Apply similary join
10. We are processed range query, thus the best matched record is shown as result.
Python Demo
 
Efficient Metric Indexing for Similarity Search and Similarity Joins