SlideShare a Scribd company logo
1 of 4
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 574
SURVEY ON SEMI SUPERVISED CLASSIFICATION METHODS AND
FEATURE SELECTION
Neethu Innocent 1
, Mathew Kurian 2
1
PG student, Department of Computer Science and Technology, Karunya University, Tamil Nadu, India,
neethucii@gmail.com
2
Assistant Professor, computer science and technology ,Karunya University, Tamil Nadu, India,
mathewk80@karunya.edu
Abstract
Data mining also called knowledge discovery is a process of analyzing data from several perspective and summarize it into useful
information. It has tremendous application in the area of classification like pattern recognition, discovering several disease
type, analysis of medical image, recognizing speech, for identifying biometric, drug discovery etc. This is a survey based on
several semisupervised classification method used by classifiers , in this both labeled and unlabeled data can be used for
classification purpose.It is less expensive than other classification methods . Different techniques surveyed in this paper are low
density separation approach, transductive SVM, semi-supervised based logistic discriminate procedure, self training nearest
neighbour rule using cut edges, self training nearest neighbour rule using cut edges. Along with classification methods a review
about various feature selection methods is also mentioned in this paper. Feature selection is performed to reduce the dimension of
large dataset. After reducing attribute the data is given for classification hence the accuracy and performance of classification
system can be improved .Several feature selection method include consistency based feature selection, fuzzy entropy measure
feature selection with similarity classifier, Signal to noise ratio,Positive approximation. So each method has several benefits.
Index Terms: Semisupervised classification, Transductive support vector machine, Feature selection, unlabeled samples
--------------------------------------------------------------------***----------------------------------------------------------------------
1.INTRODUCTION
Data mining is a process of extracting information from
large datasets and converts it into understandable format. It
has major role in the area classification .Various data
mining technique can be used for classification of several
diseases It will helps for better diagnosis and treatment.
There are several classification methods to used by
classifier. By using supervised classification method, only
labeled data can be used but it is very expensive and
difficult to obtain. This paper mainly concentrated on semi
supervised classification method which use both labeled and
unlabeled data[8]. Several semi supervised classification
methods are transductive support vector machine,
recursively partition model, cut edge and nearest neighbour
rule, low density separation approach.
One major problem faced in the classification is due to
large number of features of dataset. if there is thousands of
features then it will affect the performance of classifier. This
is one of the challenge in machine learning technique and is
called feature selection[1],[7].By using this method only
selected features will taken for classification so dimension
of data will reduced, computational cost can be reduced,
performance of classification can be increased . Several
feature selection methods included in this paper are
consistency based feature selection method, consistency
based feature selection, signal to noise ratio , positive
approximation, Fuzzy entropy measure feature selection
with similarity classifier, positive approximation based on
rough set theory.
2.SEMISUPERVISED CLASSIFICATION
In semisupervised classification method both labeled and
unlabeled samples is used . Unlabeled samples will obtained
very easily but labeled samples are very expensive.
2.1.Transductive SVM
TSVM it is an iterative algorithm which include unlabeled
samples in training phase. Ujwal malik et.al proposed a
transductive procedure in which transductive sample is
selected through a filtering process of unlabeled data and an
algorithm is proposed[1].
This algorithm use input as both labeled and unlabeled
samples. Algorithm starts with training the SVM classifier
which is having a working set T(0).Working set will be
equal to labeled set . The unlabeled data which fall into the
margin will have more information, in which some data fall
into negative side and is called negative transductive sample
and unlabeled data fall into positive side is called positive
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 575
transductive samples. Samples with accurate labeling
,informative samples and samples which are near to margin
will be selected and some will be residing in upper side and
in lower side will be assigned as +1and -1 respectively.
Selected transductive sample is added to the training set. So
by using this method the accuracy of classification can be
increased and cost also reduced.
2.2.Semi-supervised based logistic discriminant
procedure
Shuichi kawano et.al proposed a non linear semi-supervised
logistic discriminant procedure which is based on Gaussian
basis expansions with regularization based on graph [9]
.Graph laplacian is used in regularization term is one of the
major technique in graph based regularization method .It is
based on degree matrix and weighted adjacency matrix .
Weighted matrix M will be a n x n matrix. To select values
of several tuning parameters they derive a model for the
selection criteria from Bayesian and information theoretic
approach . Laplacian graph are applied easily to analyze
high dimensional or complex dataset in both labeled and
unlabeled data set. This method also reduce error rate of
prediction.
2.3.Self training nearest neighbour rule using cut
edges
One of the common technique used in semisupervised
method is self training In this case first classifier will train
with labeled samples and then it will include unlabeled
samples and added with training set. Classifier teaches s
itself by using its prediction. But this method can cause
several problems like misclassification, much noise in
labeled data and also cause error reinforcement. Y.Wang
et.al proposed a method to solve this problem and is called
self training nearest neighbour rule using cut edges[2] .This
method is to pool both testing samples and training sample
in an iterative way. There are two aspects .
 Firstly maximum number of testing samples must
classify to positive or negative. The extreme output
must be of lower risk. If maximum number of class
is obtained then construct a label modification
mechanism which utilizes cut edges in the relative
neighborhood graph.
 Secondly to employ cut edge weight for
semisupervised classification technique. So by
using cut edge it reduces classification error, error
reinforcement and also improves the performance.
2.4.Low density separation approach
The algorithm of low density separation use cluster
assumption which use both labeled and unlabeled data is
used. Based on cluster assumption the decision boundary
must lie in low density region and should not overlap high
density region[1][4]. There are two procedure to keep the
decision boundary in the low density regions between
clusters. First, it obtain the graph based distance that give
importance to low density region. Secondly it avoid high
density region and obtain decision boundary by optimizing
transductive SVM objective function. Hence these two
procedures will combine. So LDS can achieve more
accuracy compared than traditional semisupervised method
and SVM.
Table 1: Comparison table for semisupervised
classifications
3.FEATURE SELECTION
Most of the dataset will be of huge size. So feature selection
is used to reduce the dimensionality of large data[10]. After
reducing features the sample data is given to classifier . For
example Gene expression data set is a large data set with
thousands of gene data. So feature selection method is used
to reduce the size of data and it can increase the
performance of classifier. Several feature selection method
are explained in this section.
3.1.Consistency based feature selection
In this method only relevant features are selected and also
inconsistency measure is calculated [1],[5]. For example a
pattern is having more than one matched instances but they
are residing in different classes considered as it is
inconsistent .So inconsistent features are removed. The
forward greedy algorithm is used in this method the step of
this algorithm is shown in the fig 1 [6]. Several steps are
 Features of next candidate subset is generated
based on generation procedure
 Candidate function is evaluated based on
evaluation function
 Decide a stopping criteria when to stop
Transductive svm Accuracy of classification
increased
semi-supervised based
logistic discriminant
procedure
Reduce error rate
Self trainng nearest
neighbour rule using cut
edges
Improve performance
Low density separation
approach
Accuracy of classifier
increased
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 576
Fig 1.Forward Greedy Algorithm for attribute reduction
3.2.Fuzzy entropy measure feature selection with
similarity classifier
In this method features is selected by fuzzy entropy
measure and also with the help of similarity classifier[11].
The main principle behind similarity classifier is to create an
ideal vector Vj=(-Vj(S1),……,Vj(Fn)) which represent the
class j. This ideal vector is calculated from a the sample Yj
of vector Y=(Y(S1),….Y(Sn)) which belongs to class Cj.
After the calculation of ideal vector the similarity of vector
V and sample Y is calculated, it is represented as S(Y,V).
Value of similarity will be 1 in the ideal case if sample
belong to class j. From this point view the entropy value is
calculated to select features. If similarity value is high then
entropy value will be very less and vice versa. Fuzzy
entropy value of several features is calculated using by using
sample vector and ideal vector which is used for
classification. Features with highest entropy value are
removed and lowest entropy value is selected. Classification
accuracy is increased and computational time is reduced.
3.3.Signal to noise ratio
Signal to noise ratio is calculated by using the equation[1] ,
[3]
SNR=
(m1−m2)
(σ1−σ2)
(1)
m1and m2 are mean and σ1 and σ 2 are standard
deviations. For example take the gene expression data then
calculate the SNR value of based on gene expression level.
Then arrange in descending order and select top ten features.
This method will enhance the accuracy of classification.
3.4.Positive approximation
Existing heuristic attribute reduction has several
limitations . Yuhua Qian proposed a method called positive
approximation based on rough set theory[6]. The main
objective of this method is to select some property of
original data without any redundancy. There will be more
than one reduct. But only one reduced attribute is needed so
a heuristic algorithm is proposed based on significance
measure of the attribute. This method is somewhat similar to
greedy search algorithm. But some modification is
proposed here significance measure is calculated . Until the
reduct set is obtained the attribute with maximum
significance value is added at each stage. The result of
positive approximation of attribute reduction shows that it
is an effective accelerator. There are three speed up factor
in positive approximation based feature selection :
 One attribute can select more than one ineach
loop. So this will helps to provide a restriction in
the result of the reduction algorithm.
 Reduced computational time due to attribute
significance measure.
 Another important factor in this algorithm is size
of the data is reduced and time taken for the
computation of stopping criteria is also reduced
to minimum.
4.CONCLUSION
This paper based on review of various semisupervised
classifications. Each classification method has its own
advantages and disadvantages Low density separation
approach used for classification can overcome the problems
of traditional SVM. The other method transductive SVM
can increase accuracy of classification. Logistic discriminant
procedure and self training nearest neighbour rule using cut
edges can reduce the error rate and misclassification. Survey
on several feature selection methods is analyzed in this
paper. Consistency based feature selection method reduce
the inconsistent feature and increase the the performance.
The another method fuzzy entropy measure feature
selection with similarity classifier can increase the
accuracy and reduce computational time. In signal noise
ration feature is selected based on SNR values of each
attribute and arranged in descending order then top ten
features are selected . By using positive approximation
reduction method the selected attribute will not have
redundant values.
REFERENCES
[1]Ujjwal MauliK, Anirban Mukhopadhyay and Debasis
Chakraborty “gene-expression-based cancer subtypes
prediction through feature selection and transductive SVM”
IEEE transactions on biomedical engineering, vol. 60, no. 4,
april 2013.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 577
[2]Yu Wang , Xiaoyan Xu, Haifeng Zhao , Zhongsheng Hua
“semi-supervised learning based on nearest neighbor rule
and cut edges” Knowledge-Based Systems 23 (2010) 547–
554.
[3]Debahuti Mishra, Barnali Sahu “Feature selection for
cancer classification: a signal-to-noise ratio approach”
International Journal of Scientific & Engineering Research,
Volume 2, Issue 4, April-2011 D. C. Koestler, C. J. Marsit,
B. C. Christensen, M. R. Karagas, R. Bueno.
[4]O. Chapelle and A. Zien, “Semi-supervised classification
by low-density separation,” in Proc. 10th Int. Works. Artif.
Intell. Stat., 2005, pp. 57–64
[5]M. Dash andH. Liu, “Consistency based search in feature
selection,” Artif.Intell., vol. 151, pp. 155–176, 2003.
[6]Y. Qian, J. Liang, W. Pedrycz, and C. Dang, “Positive
approximation:An accelerator for attribute reduction in
rough set theory,” Artif. Intell.,vol. 174, pp. 597–618, 2010.
[7]S. Bandyopadhyay, A. Mukhopadhyay, and U. Maulik,
“An improved algorithm for clustering gene expression
data,” oinformatics, vol. 23, no. 21, pp. 2859–2865, 2007.
[8] O. Chapelle, V. Sindhwani, and S. S. Keerthi,
“Optimization techniques for semi-supervised support
vectors,” J.Mach. Learn. Res., vol. 9, pp. 203–233, 2008.
[9] Shuichi Kawano · Toshihiro Misumi · Sadanori Konishi
“Semi-Supervised Logistic Discrimination Via Graph-Based
Regularization” Neural Process Lett (2012) 36:203–216
[10] A. Blum and P. Langley, “Selection of relevant features
and examples in machine learing,” Artif. Intell., vol. 97, no.
1/2, pp. 245–271, 1997
[11] Pasi Luukka “Feature selection using fuzzy entropy
measures with similarity classifier” Expert Systems with
Applications 38 (2011) 4600–4607
BIOGRAPHIES
Neethu Innocent pursuing her
M.Tech in Software Engineering
from Karunya University,
Tamilnadu, India. She received her
Bachelor’s degree from MG
university in Computer Science and
Engineering from Kerala.
Mathew Kurian,has finished his
M.E in computer science and
engineering from Jadavpur
University,Kolkatta and currently
he is working as Assistant Professor
in Department of Computer
Science and Engineering in
Karunya University.Previously,he
worked as Software Engineer with
Aricent Technologies.He is
currently doing his PhD Degree in
Data Mining.

More Related Content

What's hot

An efficient feature selection in
An efficient feature selection inAn efficient feature selection in
An efficient feature selection incsandit
 
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...IRJET Journal
 
An unsupervised feature selection algorithm with feature ranking for maximizi...
An unsupervised feature selection algorithm with feature ranking for maximizi...An unsupervised feature selection algorithm with feature ranking for maximizi...
An unsupervised feature selection algorithm with feature ranking for maximizi...Asir Singh
 
IRJET - A Survey on Machine Learning Intelligence Techniques for Medical ...
IRJET -  	  A Survey on Machine Learning Intelligence Techniques for Medical ...IRJET -  	  A Survey on Machine Learning Intelligence Techniques for Medical ...
IRJET - A Survey on Machine Learning Intelligence Techniques for Medical ...IRJET Journal
 
IRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data MiningIRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data MiningIRJET Journal
 
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...IRJET Journal
 
A novel medical image segmentation and classification using combined feature ...
A novel medical image segmentation and classification using combined feature ...A novel medical image segmentation and classification using combined feature ...
A novel medical image segmentation and classification using combined feature ...eSAT Journals
 
A02610104
A02610104A02610104
A02610104theijes
 
Unsupervised Feature Selection Based on the Distribution of Features Attribut...
Unsupervised Feature Selection Based on the Distribution of Features Attribut...Unsupervised Feature Selection Based on the Distribution of Features Attribut...
Unsupervised Feature Selection Based on the Distribution of Features Attribut...Waqas Tariq
 
Feature selection for multiple water quality status: integrated bootstrapping...
Feature selection for multiple water quality status: integrated bootstrapping...Feature selection for multiple water quality status: integrated bootstrapping...
Feature selection for multiple water quality status: integrated bootstrapping...IJECEIAES
 
IDENTIFICATION AND CLASSIFICATION OF POWDER MICROSCOPIC IMAGES OF INDIAN HERB...
IDENTIFICATION AND CLASSIFICATION OF POWDER MICROSCOPIC IMAGES OF INDIAN HERB...IDENTIFICATION AND CLASSIFICATION OF POWDER MICROSCOPIC IMAGES OF INDIAN HERB...
IDENTIFICATION AND CLASSIFICATION OF POWDER MICROSCOPIC IMAGES OF INDIAN HERB...IAEME Publication
 
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...IRJET Journal
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
IRJET - An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET -  	  An User Friendly Interface for Data Preprocessing and Visualizati...IRJET -  	  An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET - An User Friendly Interface for Data Preprocessing and Visualizati...IRJET Journal
 
Regularized Weighted Ensemble of Deep Classifiers
Regularized Weighted Ensemble of Deep Classifiers Regularized Weighted Ensemble of Deep Classifiers
Regularized Weighted Ensemble of Deep Classifiers ijcsa
 
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...IRJET Journal
 
IRJET - Survey on Clustering based Categorical Data Protection
IRJET - Survey on Clustering based Categorical Data ProtectionIRJET - Survey on Clustering based Categorical Data Protection
IRJET - Survey on Clustering based Categorical Data ProtectionIRJET Journal
 

What's hot (18)

An efficient feature selection in
An efficient feature selection inAn efficient feature selection in
An efficient feature selection in
 
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
 
An unsupervised feature selection algorithm with feature ranking for maximizi...
An unsupervised feature selection algorithm with feature ranking for maximizi...An unsupervised feature selection algorithm with feature ranking for maximizi...
An unsupervised feature selection algorithm with feature ranking for maximizi...
 
IRJET - A Survey on Machine Learning Intelligence Techniques for Medical ...
IRJET -  	  A Survey on Machine Learning Intelligence Techniques for Medical ...IRJET -  	  A Survey on Machine Learning Intelligence Techniques for Medical ...
IRJET - A Survey on Machine Learning Intelligence Techniques for Medical ...
 
IRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data MiningIRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data Mining
 
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
Comparative Analysis of Machine Learning Algorithms for their Effectiveness i...
 
A novel medical image segmentation and classification using combined feature ...
A novel medical image segmentation and classification using combined feature ...A novel medical image segmentation and classification using combined feature ...
A novel medical image segmentation and classification using combined feature ...
 
A02610104
A02610104A02610104
A02610104
 
Unsupervised Feature Selection Based on the Distribution of Features Attribut...
Unsupervised Feature Selection Based on the Distribution of Features Attribut...Unsupervised Feature Selection Based on the Distribution of Features Attribut...
Unsupervised Feature Selection Based on the Distribution of Features Attribut...
 
Feature selection for multiple water quality status: integrated bootstrapping...
Feature selection for multiple water quality status: integrated bootstrapping...Feature selection for multiple water quality status: integrated bootstrapping...
Feature selection for multiple water quality status: integrated bootstrapping...
 
IDENTIFICATION AND CLASSIFICATION OF POWDER MICROSCOPIC IMAGES OF INDIAN HERB...
IDENTIFICATION AND CLASSIFICATION OF POWDER MICROSCOPIC IMAGES OF INDIAN HERB...IDENTIFICATION AND CLASSIFICATION OF POWDER MICROSCOPIC IMAGES OF INDIAN HERB...
IDENTIFICATION AND CLASSIFICATION OF POWDER MICROSCOPIC IMAGES OF INDIAN HERB...
 
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
IRJET- Machine Learning Classification Algorithms for Predictive Analysis in ...
 
xtremes
xtremesxtremes
xtremes
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
IRJET - An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET -  	  An User Friendly Interface for Data Preprocessing and Visualizati...IRJET -  	  An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET - An User Friendly Interface for Data Preprocessing and Visualizati...
 
Regularized Weighted Ensemble of Deep Classifiers
Regularized Weighted Ensemble of Deep Classifiers Regularized Weighted Ensemble of Deep Classifiers
Regularized Weighted Ensemble of Deep Classifiers
 
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
IRJET- Supervised Learning Approach for Flower Images using Color, Shape and ...
 
IRJET - Survey on Clustering based Categorical Data Protection
IRJET - Survey on Clustering based Categorical Data ProtectionIRJET - Survey on Clustering based Categorical Data Protection
IRJET - Survey on Clustering based Categorical Data Protection
 

Viewers also liked

Survey on clustering based color image segmentation and novel approaches to f...
Survey on clustering based color image segmentation and novel approaches to f...Survey on clustering based color image segmentation and novel approaches to f...
Survey on clustering based color image segmentation and novel approaches to f...eSAT Journals
 
Delay efficient broadcast scheduling for critical event monitoring in wireles...
Delay efficient broadcast scheduling for critical event monitoring in wireles...Delay efficient broadcast scheduling for critical event monitoring in wireles...
Delay efficient broadcast scheduling for critical event monitoring in wireles...eSAT Journals
 
An enhanced method for human life rescue system
An enhanced method for human life rescue systemAn enhanced method for human life rescue system
An enhanced method for human life rescue systemeSAT Journals
 
Properties of the cake layer in the ultrafiltration of polydisperse colloidal...
Properties of the cake layer in the ultrafiltration of polydisperse colloidal...Properties of the cake layer in the ultrafiltration of polydisperse colloidal...
Properties of the cake layer in the ultrafiltration of polydisperse colloidal...eSAT Journals
 
Experimental design to determine thermal diffusivity of a material an anal...
Experimental design to determine thermal diffusivity of a material    an anal...Experimental design to determine thermal diffusivity of a material    an anal...
Experimental design to determine thermal diffusivity of a material an anal...eSAT Journals
 
A study on the edm of al7075+3 wt%sic+3wt% b4c hybrid mmc
A study on the edm of al7075+3 wt%sic+3wt% b4c hybrid mmcA study on the edm of al7075+3 wt%sic+3wt% b4c hybrid mmc
A study on the edm of al7075+3 wt%sic+3wt% b4c hybrid mmceSAT Journals
 
A review paper on watchdog mechanism in wireless sensor network to eliminate ...
A review paper on watchdog mechanism in wireless sensor network to eliminate ...A review paper on watchdog mechanism in wireless sensor network to eliminate ...
A review paper on watchdog mechanism in wireless sensor network to eliminate ...eSAT Journals
 
A two tier approach for preventing black hole attack and improving efficiency
A two tier approach for preventing black hole attack and improving efficiencyA two tier approach for preventing black hole attack and improving efficiency
A two tier approach for preventing black hole attack and improving efficiencyeSAT Journals
 
Analysis of energy efficiency aspects in energy man agement model of bunse in...
Analysis of energy efficiency aspects in energy man agement model of bunse in...Analysis of energy efficiency aspects in energy man agement model of bunse in...
Analysis of energy efficiency aspects in energy man agement model of bunse in...eSAT Journals
 
Electricity theft detection and localisation in unknown radial low voltage ne...
Electricity theft detection and localisation in unknown radial low voltage ne...Electricity theft detection and localisation in unknown radial low voltage ne...
Electricity theft detection and localisation in unknown radial low voltage ne...eSAT Journals
 
Analysis and reporting of programming skills using mobile cloud based compiler
Analysis and reporting of programming skills using mobile cloud based compilerAnalysis and reporting of programming skills using mobile cloud based compiler
Analysis and reporting of programming skills using mobile cloud based compilereSAT Journals
 
Applications of dampers for vibration control of structures an overview
Applications of dampers for vibration control of structures   an overviewApplications of dampers for vibration control of structures   an overview
Applications of dampers for vibration control of structures an overvieweSAT Journals
 
Study of shear walls in multistoried buildings with different thickness and r...
Study of shear walls in multistoried buildings with different thickness and r...Study of shear walls in multistoried buildings with different thickness and r...
Study of shear walls in multistoried buildings with different thickness and r...eSAT Journals
 
Comparative study of interlocking and sandcrete blocks for building walling s...
Comparative study of interlocking and sandcrete blocks for building walling s...Comparative study of interlocking and sandcrete blocks for building walling s...
Comparative study of interlocking and sandcrete blocks for building walling s...eSAT Journals
 
Improvement of construction labor productivity in chambal region
Improvement of construction labor productivity in chambal regionImprovement of construction labor productivity in chambal region
Improvement of construction labor productivity in chambal regioneSAT Journals
 
A cpw fed antenna rectangular shaped box with semicircle slot for wlan
A cpw fed antenna rectangular shaped box with semicircle slot for wlanA cpw fed antenna rectangular shaped box with semicircle slot for wlan
A cpw fed antenna rectangular shaped box with semicircle slot for wlaneSAT Journals
 
Synthesis and characterization of zno thin films deposited by chemical bath t...
Synthesis and characterization of zno thin films deposited by chemical bath t...Synthesis and characterization of zno thin films deposited by chemical bath t...
Synthesis and characterization of zno thin films deposited by chemical bath t...eSAT Journals
 
Building spatial database for cuttack municipal corporation a geospatial tech...
Building spatial database for cuttack municipal corporation a geospatial tech...Building spatial database for cuttack municipal corporation a geospatial tech...
Building spatial database for cuttack municipal corporation a geospatial tech...eSAT Journals
 
Gaussian noise reduction on images automatically
Gaussian noise reduction on images automaticallyGaussian noise reduction on images automatically
Gaussian noise reduction on images automaticallyeSAT Journals
 

Viewers also liked (19)

Survey on clustering based color image segmentation and novel approaches to f...
Survey on clustering based color image segmentation and novel approaches to f...Survey on clustering based color image segmentation and novel approaches to f...
Survey on clustering based color image segmentation and novel approaches to f...
 
Delay efficient broadcast scheduling for critical event monitoring in wireles...
Delay efficient broadcast scheduling for critical event monitoring in wireles...Delay efficient broadcast scheduling for critical event monitoring in wireles...
Delay efficient broadcast scheduling for critical event monitoring in wireles...
 
An enhanced method for human life rescue system
An enhanced method for human life rescue systemAn enhanced method for human life rescue system
An enhanced method for human life rescue system
 
Properties of the cake layer in the ultrafiltration of polydisperse colloidal...
Properties of the cake layer in the ultrafiltration of polydisperse colloidal...Properties of the cake layer in the ultrafiltration of polydisperse colloidal...
Properties of the cake layer in the ultrafiltration of polydisperse colloidal...
 
Experimental design to determine thermal diffusivity of a material an anal...
Experimental design to determine thermal diffusivity of a material    an anal...Experimental design to determine thermal diffusivity of a material    an anal...
Experimental design to determine thermal diffusivity of a material an anal...
 
A study on the edm of al7075+3 wt%sic+3wt% b4c hybrid mmc
A study on the edm of al7075+3 wt%sic+3wt% b4c hybrid mmcA study on the edm of al7075+3 wt%sic+3wt% b4c hybrid mmc
A study on the edm of al7075+3 wt%sic+3wt% b4c hybrid mmc
 
A review paper on watchdog mechanism in wireless sensor network to eliminate ...
A review paper on watchdog mechanism in wireless sensor network to eliminate ...A review paper on watchdog mechanism in wireless sensor network to eliminate ...
A review paper on watchdog mechanism in wireless sensor network to eliminate ...
 
A two tier approach for preventing black hole attack and improving efficiency
A two tier approach for preventing black hole attack and improving efficiencyA two tier approach for preventing black hole attack and improving efficiency
A two tier approach for preventing black hole attack and improving efficiency
 
Analysis of energy efficiency aspects in energy man agement model of bunse in...
Analysis of energy efficiency aspects in energy man agement model of bunse in...Analysis of energy efficiency aspects in energy man agement model of bunse in...
Analysis of energy efficiency aspects in energy man agement model of bunse in...
 
Electricity theft detection and localisation in unknown radial low voltage ne...
Electricity theft detection and localisation in unknown radial low voltage ne...Electricity theft detection and localisation in unknown radial low voltage ne...
Electricity theft detection and localisation in unknown radial low voltage ne...
 
Analysis and reporting of programming skills using mobile cloud based compiler
Analysis and reporting of programming skills using mobile cloud based compilerAnalysis and reporting of programming skills using mobile cloud based compiler
Analysis and reporting of programming skills using mobile cloud based compiler
 
Applications of dampers for vibration control of structures an overview
Applications of dampers for vibration control of structures   an overviewApplications of dampers for vibration control of structures   an overview
Applications of dampers for vibration control of structures an overview
 
Study of shear walls in multistoried buildings with different thickness and r...
Study of shear walls in multistoried buildings with different thickness and r...Study of shear walls in multistoried buildings with different thickness and r...
Study of shear walls in multistoried buildings with different thickness and r...
 
Comparative study of interlocking and sandcrete blocks for building walling s...
Comparative study of interlocking and sandcrete blocks for building walling s...Comparative study of interlocking and sandcrete blocks for building walling s...
Comparative study of interlocking and sandcrete blocks for building walling s...
 
Improvement of construction labor productivity in chambal region
Improvement of construction labor productivity in chambal regionImprovement of construction labor productivity in chambal region
Improvement of construction labor productivity in chambal region
 
A cpw fed antenna rectangular shaped box with semicircle slot for wlan
A cpw fed antenna rectangular shaped box with semicircle slot for wlanA cpw fed antenna rectangular shaped box with semicircle slot for wlan
A cpw fed antenna rectangular shaped box with semicircle slot for wlan
 
Synthesis and characterization of zno thin films deposited by chemical bath t...
Synthesis and characterization of zno thin films deposited by chemical bath t...Synthesis and characterization of zno thin films deposited by chemical bath t...
Synthesis and characterization of zno thin films deposited by chemical bath t...
 
Building spatial database for cuttack municipal corporation a geospatial tech...
Building spatial database for cuttack municipal corporation a geospatial tech...Building spatial database for cuttack municipal corporation a geospatial tech...
Building spatial database for cuttack municipal corporation a geospatial tech...
 
Gaussian noise reduction on images automatically
Gaussian noise reduction on images automaticallyGaussian noise reduction on images automatically
Gaussian noise reduction on images automatically
 

Similar to Survey on semi supervised classification methods and feature selection

A study and survey on various progressive duplicate detection mechanisms
A study and survey on various progressive duplicate detection mechanismsA study and survey on various progressive duplicate detection mechanisms
A study and survey on various progressive duplicate detection mechanismseSAT Journals
 
Correlation of artificial neural network classification and nfrs attribute fi...
Correlation of artificial neural network classification and nfrs attribute fi...Correlation of artificial neural network classification and nfrs attribute fi...
Correlation of artificial neural network classification and nfrs attribute fi...eSAT Journals
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET Journal
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYCLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYEditor IJMTER
 
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...IRJET Journal
 
Data mining techniques
Data mining techniquesData mining techniques
Data mining techniqueseSAT Journals
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Data mining techniques a survey paper
Data mining techniques a survey paperData mining techniques a survey paper
Data mining techniques a survey papereSAT Publishing House
 
ATTRIBUTE REDUCTION-BASED ENSEMBLE RULE CLASSIFIERS METHOD FOR DATASET CLASSI...
ATTRIBUTE REDUCTION-BASED ENSEMBLE RULE CLASSIFIERS METHOD FOR DATASET CLASSI...ATTRIBUTE REDUCTION-BASED ENSEMBLE RULE CLASSIFIERS METHOD FOR DATASET CLASSI...
ATTRIBUTE REDUCTION-BASED ENSEMBLE RULE CLASSIFIERS METHOD FOR DATASET CLASSI...csandit
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
A Threshold fuzzy entropy based feature selection method applied in various b...
A Threshold fuzzy entropy based feature selection method applied in various b...A Threshold fuzzy entropy based feature selection method applied in various b...
A Threshold fuzzy entropy based feature selection method applied in various b...IJMER
 
Feature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesFeature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesIRJET Journal
 
Machine Learning Aided Breast Cancer Classification
Machine Learning Aided Breast Cancer ClassificationMachine Learning Aided Breast Cancer Classification
Machine Learning Aided Breast Cancer ClassificationIRJET Journal
 
IRJET - Survey on Analysis of Breast Cancer Prediction
IRJET - Survey on Analysis of Breast Cancer PredictionIRJET - Survey on Analysis of Breast Cancer Prediction
IRJET - Survey on Analysis of Breast Cancer PredictionIRJET Journal
 
A comparative analysis of classification techniques on medical data sets
A comparative analysis of classification techniques on medical data setsA comparative analysis of classification techniques on medical data sets
A comparative analysis of classification techniques on medical data setseSAT Publishing House
 
Data preprocessing for efficient external sorting
Data preprocessing for efficient external sortingData preprocessing for efficient external sorting
Data preprocessing for efficient external sortingeSAT Journals
 
External data preprocessing for efficient sorting
External data preprocessing for efficient sortingExternal data preprocessing for efficient sorting
External data preprocessing for efficient sortingeSAT Publishing House
 
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...IRJET Journal
 
Analysis of Common Supervised Learning Algorithms Through Application
Analysis of Common Supervised Learning Algorithms Through ApplicationAnalysis of Common Supervised Learning Algorithms Through Application
Analysis of Common Supervised Learning Algorithms Through Applicationaciijournal
 

Similar to Survey on semi supervised classification methods and feature selection (20)

A study and survey on various progressive duplicate detection mechanisms
A study and survey on various progressive duplicate detection mechanismsA study and survey on various progressive duplicate detection mechanisms
A study and survey on various progressive duplicate detection mechanisms
 
Correlation of artificial neural network classification and nfrs attribute fi...
Correlation of artificial neural network classification and nfrs attribute fi...Correlation of artificial neural network classification and nfrs attribute fi...
Correlation of artificial neural network classification and nfrs attribute fi...
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data Mining
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYCLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
 
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
E-Healthcare monitoring System for diagnosis of Heart Disease using Machine L...
 
Data mining techniques
Data mining techniquesData mining techniques
Data mining techniques
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
Data mining techniques a survey paper
Data mining techniques a survey paperData mining techniques a survey paper
Data mining techniques a survey paper
 
ATTRIBUTE REDUCTION-BASED ENSEMBLE RULE CLASSIFIERS METHOD FOR DATASET CLASSI...
ATTRIBUTE REDUCTION-BASED ENSEMBLE RULE CLASSIFIERS METHOD FOR DATASET CLASSI...ATTRIBUTE REDUCTION-BASED ENSEMBLE RULE CLASSIFIERS METHOD FOR DATASET CLASSI...
ATTRIBUTE REDUCTION-BASED ENSEMBLE RULE CLASSIFIERS METHOD FOR DATASET CLASSI...
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
A Threshold fuzzy entropy based feature selection method applied in various b...
A Threshold fuzzy entropy based feature selection method applied in various b...A Threshold fuzzy entropy based feature selection method applied in various b...
A Threshold fuzzy entropy based feature selection method applied in various b...
 
Feature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesFeature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering Techniques
 
Machine Learning Aided Breast Cancer Classification
Machine Learning Aided Breast Cancer ClassificationMachine Learning Aided Breast Cancer Classification
Machine Learning Aided Breast Cancer Classification
 
IRJET - Survey on Analysis of Breast Cancer Prediction
IRJET - Survey on Analysis of Breast Cancer PredictionIRJET - Survey on Analysis of Breast Cancer Prediction
IRJET - Survey on Analysis of Breast Cancer Prediction
 
A comparative analysis of classification techniques on medical data sets
A comparative analysis of classification techniques on medical data setsA comparative analysis of classification techniques on medical data sets
A comparative analysis of classification techniques on medical data sets
 
Data preprocessing for efficient external sorting
Data preprocessing for efficient external sortingData preprocessing for efficient external sorting
Data preprocessing for efficient external sorting
 
External data preprocessing for efficient sorting
External data preprocessing for efficient sortingExternal data preprocessing for efficient sorting
External data preprocessing for efficient sorting
 
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
 
Analysis of Common Supervised Learning Algorithms Through Application
Analysis of Common Supervised Learning Algorithms Through ApplicationAnalysis of Common Supervised Learning Algorithms Through Application
Analysis of Common Supervised Learning Algorithms Through Application
 
IJET-V2I6P32
IJET-V2I6P32IJET-V2I6P32
IJET-V2I6P32
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementseSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case studyeSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case studyeSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreeSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialseSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizereSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementeSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteeSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabseSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaeSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodeSAT Journals
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniqueseSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage examplePragyanshuParadkar1
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIkoyaldeepu123
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture designssuser87fa0c1
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 

Recently uploaded (20)

Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage example
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AI
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture design
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 

Survey on semi supervised classification methods and feature selection

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 574 SURVEY ON SEMI SUPERVISED CLASSIFICATION METHODS AND FEATURE SELECTION Neethu Innocent 1 , Mathew Kurian 2 1 PG student, Department of Computer Science and Technology, Karunya University, Tamil Nadu, India, neethucii@gmail.com 2 Assistant Professor, computer science and technology ,Karunya University, Tamil Nadu, India, mathewk80@karunya.edu Abstract Data mining also called knowledge discovery is a process of analyzing data from several perspective and summarize it into useful information. It has tremendous application in the area of classification like pattern recognition, discovering several disease type, analysis of medical image, recognizing speech, for identifying biometric, drug discovery etc. This is a survey based on several semisupervised classification method used by classifiers , in this both labeled and unlabeled data can be used for classification purpose.It is less expensive than other classification methods . Different techniques surveyed in this paper are low density separation approach, transductive SVM, semi-supervised based logistic discriminate procedure, self training nearest neighbour rule using cut edges, self training nearest neighbour rule using cut edges. Along with classification methods a review about various feature selection methods is also mentioned in this paper. Feature selection is performed to reduce the dimension of large dataset. After reducing attribute the data is given for classification hence the accuracy and performance of classification system can be improved .Several feature selection method include consistency based feature selection, fuzzy entropy measure feature selection with similarity classifier, Signal to noise ratio,Positive approximation. So each method has several benefits. Index Terms: Semisupervised classification, Transductive support vector machine, Feature selection, unlabeled samples --------------------------------------------------------------------***---------------------------------------------------------------------- 1.INTRODUCTION Data mining is a process of extracting information from large datasets and converts it into understandable format. It has major role in the area classification .Various data mining technique can be used for classification of several diseases It will helps for better diagnosis and treatment. There are several classification methods to used by classifier. By using supervised classification method, only labeled data can be used but it is very expensive and difficult to obtain. This paper mainly concentrated on semi supervised classification method which use both labeled and unlabeled data[8]. Several semi supervised classification methods are transductive support vector machine, recursively partition model, cut edge and nearest neighbour rule, low density separation approach. One major problem faced in the classification is due to large number of features of dataset. if there is thousands of features then it will affect the performance of classifier. This is one of the challenge in machine learning technique and is called feature selection[1],[7].By using this method only selected features will taken for classification so dimension of data will reduced, computational cost can be reduced, performance of classification can be increased . Several feature selection methods included in this paper are consistency based feature selection method, consistency based feature selection, signal to noise ratio , positive approximation, Fuzzy entropy measure feature selection with similarity classifier, positive approximation based on rough set theory. 2.SEMISUPERVISED CLASSIFICATION In semisupervised classification method both labeled and unlabeled samples is used . Unlabeled samples will obtained very easily but labeled samples are very expensive. 2.1.Transductive SVM TSVM it is an iterative algorithm which include unlabeled samples in training phase. Ujwal malik et.al proposed a transductive procedure in which transductive sample is selected through a filtering process of unlabeled data and an algorithm is proposed[1]. This algorithm use input as both labeled and unlabeled samples. Algorithm starts with training the SVM classifier which is having a working set T(0).Working set will be equal to labeled set . The unlabeled data which fall into the margin will have more information, in which some data fall into negative side and is called negative transductive sample and unlabeled data fall into positive side is called positive
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 575 transductive samples. Samples with accurate labeling ,informative samples and samples which are near to margin will be selected and some will be residing in upper side and in lower side will be assigned as +1and -1 respectively. Selected transductive sample is added to the training set. So by using this method the accuracy of classification can be increased and cost also reduced. 2.2.Semi-supervised based logistic discriminant procedure Shuichi kawano et.al proposed a non linear semi-supervised logistic discriminant procedure which is based on Gaussian basis expansions with regularization based on graph [9] .Graph laplacian is used in regularization term is one of the major technique in graph based regularization method .It is based on degree matrix and weighted adjacency matrix . Weighted matrix M will be a n x n matrix. To select values of several tuning parameters they derive a model for the selection criteria from Bayesian and information theoretic approach . Laplacian graph are applied easily to analyze high dimensional or complex dataset in both labeled and unlabeled data set. This method also reduce error rate of prediction. 2.3.Self training nearest neighbour rule using cut edges One of the common technique used in semisupervised method is self training In this case first classifier will train with labeled samples and then it will include unlabeled samples and added with training set. Classifier teaches s itself by using its prediction. But this method can cause several problems like misclassification, much noise in labeled data and also cause error reinforcement. Y.Wang et.al proposed a method to solve this problem and is called self training nearest neighbour rule using cut edges[2] .This method is to pool both testing samples and training sample in an iterative way. There are two aspects .  Firstly maximum number of testing samples must classify to positive or negative. The extreme output must be of lower risk. If maximum number of class is obtained then construct a label modification mechanism which utilizes cut edges in the relative neighborhood graph.  Secondly to employ cut edge weight for semisupervised classification technique. So by using cut edge it reduces classification error, error reinforcement and also improves the performance. 2.4.Low density separation approach The algorithm of low density separation use cluster assumption which use both labeled and unlabeled data is used. Based on cluster assumption the decision boundary must lie in low density region and should not overlap high density region[1][4]. There are two procedure to keep the decision boundary in the low density regions between clusters. First, it obtain the graph based distance that give importance to low density region. Secondly it avoid high density region and obtain decision boundary by optimizing transductive SVM objective function. Hence these two procedures will combine. So LDS can achieve more accuracy compared than traditional semisupervised method and SVM. Table 1: Comparison table for semisupervised classifications 3.FEATURE SELECTION Most of the dataset will be of huge size. So feature selection is used to reduce the dimensionality of large data[10]. After reducing features the sample data is given to classifier . For example Gene expression data set is a large data set with thousands of gene data. So feature selection method is used to reduce the size of data and it can increase the performance of classifier. Several feature selection method are explained in this section. 3.1.Consistency based feature selection In this method only relevant features are selected and also inconsistency measure is calculated [1],[5]. For example a pattern is having more than one matched instances but they are residing in different classes considered as it is inconsistent .So inconsistent features are removed. The forward greedy algorithm is used in this method the step of this algorithm is shown in the fig 1 [6]. Several steps are  Features of next candidate subset is generated based on generation procedure  Candidate function is evaluated based on evaluation function  Decide a stopping criteria when to stop Transductive svm Accuracy of classification increased semi-supervised based logistic discriminant procedure Reduce error rate Self trainng nearest neighbour rule using cut edges Improve performance Low density separation approach Accuracy of classifier increased
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 576 Fig 1.Forward Greedy Algorithm for attribute reduction 3.2.Fuzzy entropy measure feature selection with similarity classifier In this method features is selected by fuzzy entropy measure and also with the help of similarity classifier[11]. The main principle behind similarity classifier is to create an ideal vector Vj=(-Vj(S1),……,Vj(Fn)) which represent the class j. This ideal vector is calculated from a the sample Yj of vector Y=(Y(S1),….Y(Sn)) which belongs to class Cj. After the calculation of ideal vector the similarity of vector V and sample Y is calculated, it is represented as S(Y,V). Value of similarity will be 1 in the ideal case if sample belong to class j. From this point view the entropy value is calculated to select features. If similarity value is high then entropy value will be very less and vice versa. Fuzzy entropy value of several features is calculated using by using sample vector and ideal vector which is used for classification. Features with highest entropy value are removed and lowest entropy value is selected. Classification accuracy is increased and computational time is reduced. 3.3.Signal to noise ratio Signal to noise ratio is calculated by using the equation[1] , [3] SNR= (m1−m2) (σ1−σ2) (1) m1and m2 are mean and σ1 and σ 2 are standard deviations. For example take the gene expression data then calculate the SNR value of based on gene expression level. Then arrange in descending order and select top ten features. This method will enhance the accuracy of classification. 3.4.Positive approximation Existing heuristic attribute reduction has several limitations . Yuhua Qian proposed a method called positive approximation based on rough set theory[6]. The main objective of this method is to select some property of original data without any redundancy. There will be more than one reduct. But only one reduced attribute is needed so a heuristic algorithm is proposed based on significance measure of the attribute. This method is somewhat similar to greedy search algorithm. But some modification is proposed here significance measure is calculated . Until the reduct set is obtained the attribute with maximum significance value is added at each stage. The result of positive approximation of attribute reduction shows that it is an effective accelerator. There are three speed up factor in positive approximation based feature selection :  One attribute can select more than one ineach loop. So this will helps to provide a restriction in the result of the reduction algorithm.  Reduced computational time due to attribute significance measure.  Another important factor in this algorithm is size of the data is reduced and time taken for the computation of stopping criteria is also reduced to minimum. 4.CONCLUSION This paper based on review of various semisupervised classifications. Each classification method has its own advantages and disadvantages Low density separation approach used for classification can overcome the problems of traditional SVM. The other method transductive SVM can increase accuracy of classification. Logistic discriminant procedure and self training nearest neighbour rule using cut edges can reduce the error rate and misclassification. Survey on several feature selection methods is analyzed in this paper. Consistency based feature selection method reduce the inconsistent feature and increase the the performance. The another method fuzzy entropy measure feature selection with similarity classifier can increase the accuracy and reduce computational time. In signal noise ration feature is selected based on SNR values of each attribute and arranged in descending order then top ten features are selected . By using positive approximation reduction method the selected attribute will not have redundant values. REFERENCES [1]Ujjwal MauliK, Anirban Mukhopadhyay and Debasis Chakraborty “gene-expression-based cancer subtypes prediction through feature selection and transductive SVM” IEEE transactions on biomedical engineering, vol. 60, no. 4, april 2013.
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 577 [2]Yu Wang , Xiaoyan Xu, Haifeng Zhao , Zhongsheng Hua “semi-supervised learning based on nearest neighbor rule and cut edges” Knowledge-Based Systems 23 (2010) 547– 554. [3]Debahuti Mishra, Barnali Sahu “Feature selection for cancer classification: a signal-to-noise ratio approach” International Journal of Scientific & Engineering Research, Volume 2, Issue 4, April-2011 D. C. Koestler, C. J. Marsit, B. C. Christensen, M. R. Karagas, R. Bueno. [4]O. Chapelle and A. Zien, “Semi-supervised classification by low-density separation,” in Proc. 10th Int. Works. Artif. Intell. Stat., 2005, pp. 57–64 [5]M. Dash andH. Liu, “Consistency based search in feature selection,” Artif.Intell., vol. 151, pp. 155–176, 2003. [6]Y. Qian, J. Liang, W. Pedrycz, and C. Dang, “Positive approximation:An accelerator for attribute reduction in rough set theory,” Artif. Intell.,vol. 174, pp. 597–618, 2010. [7]S. Bandyopadhyay, A. Mukhopadhyay, and U. Maulik, “An improved algorithm for clustering gene expression data,” oinformatics, vol. 23, no. 21, pp. 2859–2865, 2007. [8] O. Chapelle, V. Sindhwani, and S. S. Keerthi, “Optimization techniques for semi-supervised support vectors,” J.Mach. Learn. Res., vol. 9, pp. 203–233, 2008. [9] Shuichi Kawano · Toshihiro Misumi · Sadanori Konishi “Semi-Supervised Logistic Discrimination Via Graph-Based Regularization” Neural Process Lett (2012) 36:203–216 [10] A. Blum and P. Langley, “Selection of relevant features and examples in machine learing,” Artif. Intell., vol. 97, no. 1/2, pp. 245–271, 1997 [11] Pasi Luukka “Feature selection using fuzzy entropy measures with similarity classifier” Expert Systems with Applications 38 (2011) 4600–4607 BIOGRAPHIES Neethu Innocent pursuing her M.Tech in Software Engineering from Karunya University, Tamilnadu, India. She received her Bachelor’s degree from MG university in Computer Science and Engineering from Kerala. Mathew Kurian,has finished his M.E in computer science and engineering from Jadavpur University,Kolkatta and currently he is working as Assistant Professor in Department of Computer Science and Engineering in Karunya University.Previously,he worked as Software Engineer with Aricent Technologies.He is currently doing his PhD Degree in Data Mining.