SlideShare a Scribd company logo
1 of 3
Download to read offline
@ IJTSRD | Available Online @ www.ijtsrd.com
ISSN No: 2456
International
Research
Classification o
Using NB
University of Information Technology, Myanmar
ABSTRACT
This paper present an experimental
different classifiers namely Naïve Bayes (NB) and
NB-Tree for classification of radar returns from
Ionosphere dataset. Correlation-based Feature Subset
Selection (CFS) is also used for attribute selection.
The purpose is to achieve the efficie
classification. The comparison of NB classifier and
NB-Tree is done based on Ionosphere dataset from
UCI machine learning repository. NB-
with CFS gives better accuracy for classification of
radar returns from ionosphere.
KEYWORD: classification, feature selection, NB,
NB-Tree, CFS
1. INTRODUCTION
Classification is one of the important decision making
tasks for many real problems. Classification will be
used when an object needs to be classified into a
predefined class or group based on attributes of that
object. Classification is a supervised procedure that
learns to classify new instances based on the
knowledge learnt from a previously classified training
set of instances. It takes a set of data already divided
into predefined groups and searches for patterns in the
data that differentiate those groups supervised
learning, pattern recognition and prediction. Typical
Classification Algorithms are Decision trees, rule
based induction, neural networks, genetic algorithms
and Naïve Bayes, etc.
Feature selection is one of the key topics in data
mining; it improves classification performance by
searching for the subset of features. In problem of
high dimensional feature space, some of the features
may be redundant or irrelevant. Removi
redundant or irrelevant features is very important;
@ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 5 | Jul-Aug 2018
ISSN No: 2456 - 6470 | www.ijtsrd.com | Volume
International Journal of Trend in Scientific
Research and Development (IJTSRD)
International Open Access Journal
Classification of Radar Returns from Ionosphere
Using NB-Tree and CFS
Aung Nway Oo
University of Information Technology, Myanmar
This paper present an experimental study of the
different classifiers namely Naïve Bayes (NB) and
Tree for classification of radar returns from
based Feature Subset
Selection (CFS) is also used for attribute selection.
The purpose is to achieve the efficient result for
classification. The comparison of NB classifier and
Tree is done based on Ionosphere dataset from
-Tree classifier
with CFS gives better accuracy for classification of
classification, feature selection, NB,
Classification is one of the important decision making
tasks for many real problems. Classification will be
used when an object needs to be classified into a
based on attributes of that
object. Classification is a supervised procedure that
learns to classify new instances based on the
knowledge learnt from a previously classified training
set of instances. It takes a set of data already divided
groups and searches for patterns in the
data that differentiate those groups supervised
learning, pattern recognition and prediction. Typical
Classification Algorithms are Decision trees, rule-
based induction, neural networks, genetic algorithms
Feature selection is one of the key topics in data
fication performance by
searching for the subset of features. In problem of
high dimensional feature space, some of the features
may be redundant or irrelevant. Removing these
redundant or irrelevant features is very important;
hence they may deteriorate the performance of
classifiers. Feature selection involves finding a subset
of features to improve prediction accuracy or decrease
the size of the structure without sig
decreasing prediction accuracy of the classi
using only the selected features [7].
In this paper, we evaluate the classification of
ionosphere dataset using WEKA data mining tool.
The paper is organized as follows. Overview of
Ionosphere is described in section 3. We outline
overview of Naïve Bayes in section 3 and NB
classifier in Section 4. Section 5 presents the
Correlation-based Feature Subset Selection (CFS).
The experimental results and conclusions are
presented in Section 6 and 7 respectively.
2. OVERVIEW OF IONOSPHERE
The ionosphere is defined as the layer of the Earth's
atmosphere that is world ionized by solar and cosmic
radiation. It lies 75-1000 km (46
Earth. (The Earth’s radius is 6370 km,
thickness of the ionosphere is quite tiny compared
with the size of Earth.) Because of the high energy
from the Sun and from cosmic rays, the atoms in this
area have been stripped of one or more of their
electrons, or “ionized,” and are therefore po
charged. The ionized electrons behave as free
particles. The Sun's upper atmosphere, the corona, is
very hot and produces a constant stream of plasma
and UV and X-rays that flow out from the Sun and
affect, or ionize, the Earth's ionosphere. Only
Earth’s ionosphere is being ionized by the Sun at any
time [8].
Aug 2018 Page: 1640
6470 | www.ijtsrd.com | Volume - 2 | Issue – 5
Scientific
(IJTSRD)
International Open Access Journal
f Radar Returns from Ionosphere
hence they may deteriorate the performance of
fiers. Feature selection involves finding a subset
of features to improve prediction accuracy or decrease
the size of the structure without significantly
decreasing prediction accuracy of the classifier built
using only the selected features [7].
In this paper, we evaluate the classification of
ionosphere dataset using WEKA data mining tool.
The paper is organized as follows. Overview of
Ionosphere is described in section 3. We outline
overview of Naïve Bayes in section 3 and NB-Tree
classifier in Section 4. Section 5 presents the
based Feature Subset Selection (CFS).
The experimental results and conclusions are
ction 6 and 7 respectively.
OVERVIEW OF IONOSPHERE
The ionosphere is defined as the layer of the Earth's
atmosphere that is world ionized by solar and cosmic
1000 km (46-621 miles) above the
Earth. (The Earth’s radius is 6370 km, so the
thickness of the ionosphere is quite tiny compared
with the size of Earth.) Because of the high energy
from the Sun and from cosmic rays, the atoms in this
area have been stripped of one or more of their
electrons, or “ionized,” and are therefore positively
charged. The ionized electrons behave as free
particles. The Sun's upper atmosphere, the corona, is
very hot and produces a constant stream of plasma
rays that flow out from the Sun and
affect, or ionize, the Earth's ionosphere. Only half the
Earth’s ionosphere is being ionized by the Sun at any
International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470
@ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 5 | Jul-Aug 2018 Page: 1641
During the night, without interference from the Sun,
cosmic rays ionize the ionosphere, though not nearly
as strongly as the Sun. These high energy rays
originate from sources throughout our own galaxy and
the universe -- rotating neutron stars, supernovae,
radio galaxies, quasars and black holes. Thus the
ionosphere is much less charged at night-time, which
is why a lot of ionospheric effects are easier to spot at
night – it takes a smaller change to notice them.
The ionosphere has major importance to us because,
among other functions, it influences radio propagation
to distant places on the Earth, and between satellites
and Earth. For the very low frequency (VLF) waves
that the space weather monitors track, the ionosphere
and the ground produce a “waveguide” through which
radio signals can bounce and make their way around
the curved Earth.
3. NAÏVE BAYES CLASSIFIER
Naïve Bayesian classifiers assume that there are no
dependencies amongst attributes. The Bayesian
Classification represents a supervised learning method
as well as a statistical method for classification.
Assumes an underlying probabilistic model and it
allows us to capture uncertainty about the model in a
principled way by determining probabilities of the
outcomes. It is made to simplify the computations
involved and, hence is called "naive" [2]. This
classifier is also called idiot Bayes, simple Bayes, or
independent Bayes [3]. NB is one of the 10 top
algorithms in data mining as listed by Wu et al.
(2008).
Let C denote the class of an observation X. To predict
the class of the observation X by using the Bayes rule,
the highest posterior probability of
P(C|X) =
( ) ( | )
( )
(1)
should be found. In the NB classifier, using the
assumption that featuresX1, X2,..., Xn are
conditionally independent of each other given the
class, we get
P(C|X) =
( ) ∏ ( | )
( )
(2)
In classification problems, Equation (2) is sufficient to
predict the most probable class given a test
observation.
4. NAÏVE BAYES TREE CLASSIFIER
The NB-Tree provides a simple and compact means to
indexing high–dimensional data points of variable
dimension, using a light mapping function that is
computationally inexpensive. The basic idea of the
NB-Tree is to use the Euclidean norm value as the
index key for high–dimensional points. NBTree is a
hybrid algorithm with Decision Tree and Naïve-
Bayes. In this algorithm the basic concept of recursive
partitioning of the schemes remains the same but here
the difference is that the leaf nodes are naïve Bayes
categorizers and will not have nodes predicting a
single class [5].
Although the attribute independence assumption of
naive Bayes is always violated on the whole training
data, it could be expected that the dependencies
within the local training data is weaker than that on
the whole training data. Thus, NB-Tree [4] builds a
naive Bayes classifier on each leaf node of the built
decision tree, which just integrate the advantages of
the decision tree classifiers and the Naive Bayes
classifiers. Simply speaking, it firstly uses decision
tree to segment the training data, in which each
segment of the training data is represented by a leaf
node of tree, and then builds a naive Bayes classifier
on each segment. A fundamental issue in building
decision trees is the attribute selection measure at
each non-terminal node of the tree. Namely, the utility
of each non-terminal node and a split needs to be
measured in building decision trees. NB-Tree
significantly outperforms Naïve Bayes in terms of
classification performance indeed. However, it incurs
the high time complexity, because it needs to build
and evaluate Naive Bayes classifiers again and again
in creating a split.
5. CORRELATION-BASED FEATURE
SUBSET SELECTION (CFS)
CFS evaluates and ranks feature subsets rather than
individual features. It prefers the set of attributes that
are highly correlated with the class but with low
intercorrelation [6]. With CFS various heuristic
searching strategies such as hill climbing and best first
are often applied to search the feature subsets space in
reasonable time. CFS first calculates a matrix of
feature-class and feature-feature correlations from the
training data and then searches the feature subset
space using a best first. Equation 1 (Ghiselli 1964) for
CFS is
Merits =
⃐
( )⃐
(3)
International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470
@ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 5 | Jul-Aug 2018 Page: 1642
Where Merits is the correlation between the summed
feature subset S, k is the number of subset feature,
𝑟𝑐𝑓⃐ is the average of the correlation between the
subsets feature and the class variable, and 𝑟𝑓𝑓⃐ is the
average inter-correlation between subset features.
6. EXPERIMENTAL RESULTS
This radar data was collected by a system in Goose
Bay, Labrador. This system consists of a phased array
of 16 high-frequency antennas with a total transmitted
power on the order of 6.4 kilowatts. The targets were
free electrons in the ionosphere. "Good" radar returns
are those showing evidence of some type of structure
in the ionosphere. "Bad" returns are those that do not;
their signals pass through the ionosphere. Received
signals were processed using an autocorrelation
function whose arguments are the 66% of dataset is
used for training. The dataset is collected from UCI
repository. The WEKA data mining tool is used for
evaluation and testing of algorithm. The following
tables show the experimental results of different
classifiers time of a pulse and the pulse number. There
were 17 pulse numbers for the Goose Bay system.
Instances in this database are described by 2 attributes
per pulse number, corresponding to the complex
values returned by the function resulting from the
complex electromagnetic signal. The dataset contains
351 instances and 35 attributes [1].
Table1. Accuracy results of classifiers
Naïve Bayes NB Tree NB-Tree+CFS
82.3529 % 88.2353 % 89.916 %
Table2. Test results of Classifications
Naïve
Bayes
NB-
Tree
NB
Tree+CFS
Correctly
Classified
Instances
98 105 107
Incorrectly
Classified
Instances
21 14 12
Kappa statistic 0.6474 0.7583 0.7936
Mean absolute
error
0.1647 0.1294 0.1144
Root mean
squared error
0.3866 0.3118 0.2978
Relative
absolute error
34.3174
%
26.9712
%
23.8381 %
Root relative
squared error
75.2862
%
60.7123
%
58.0024 %
7. CONCLUSION
The paper proposed the comparative analysis of Naïve
Bayes and NB-Tree classifier. The experimental
showed that the accuracy of Naïve Bayes classifier is
82.3529 % and NB Tree is 88.2353 %. According to
the evaluation results, the highest accuracy 89.916%
is found in NB-Tree classifier using Correlation-based
Feature Subset Selection.
REFERENCES
1. http://archive.ics.uci.edu
2. J. Han and M. Kamber, Data Mining: Concepts
and Techniques. Morgan-Kaufmann Publishers,
San Francisco, 2001.
3. T. Miquelez, E. Bengoetxea, P. Larranaga,
“Evolutionary Computation based on Bayesian
Classifier,” Int. J. Appl. Math. Comput. Sci. vol.
14(3), pp. 335 – 349, 2004.
4. R. Kohavi, “Scaling up the accuracy of naive-
bayes classifiers: A decision-tree hybrid,” ser.
Proceedings of the Second International
Conference on Knowledge Discovery and Data
Mining. AAAI Press, 1996, pp. 202–207.
5. R. Kohavi. “Scaling Up the Accuracy of
Naive-Bayes Classifiers: a Decision-Tree
Hybrid” Proceedings of the Second
International Conference on Knowledge
Discovery and Data Mining, 1996.
6. I.H. Witten, E. Frank, M.A. Hall “ Data Mining
Practical Machine Learning Tools &
Techniques” Third edition, Pub. – Morgan
kouffman.
7. D. Koller, and M. Sahami,” Toward optimal
feature selection” In proceedings of international
conference on machine learning, Bari, (Italy) pp.
284-92, 1996.
8. http://solar-center.stanford.edu

More Related Content

What's hot

NIR Three dimensional imaging of breast model using f-DOT
NIR Three dimensional imaging of breast model using f-DOT  NIR Three dimensional imaging of breast model using f-DOT
NIR Three dimensional imaging of breast model using f-DOT Nagendra Babu
 
Agu 2013 john_armston
Agu 2013 john_armstonAgu 2013 john_armston
Agu 2013 john_armstonbensparrowau
 
Construction of inexpensive Web-Cam based Optical Spectrometer using
Construction of inexpensive Web-Cam based Optical Spectrometer usingConstruction of inexpensive Web-Cam based Optical Spectrometer using
Construction of inexpensive Web-Cam based Optical Spectrometer usingSoares Fernando
 
International Journal of Biometrics and Bioinformatics(IJBB) Volume (1) Issue...
International Journal of Biometrics and Bioinformatics(IJBB) Volume (1) Issue...International Journal of Biometrics and Bioinformatics(IJBB) Volume (1) Issue...
International Journal of Biometrics and Bioinformatics(IJBB) Volume (1) Issue...CSCJournals
 
The atacama cosmology_telescope_measuring_radio_galaxy_bias_through_cross_cor...
The atacama cosmology_telescope_measuring_radio_galaxy_bias_through_cross_cor...The atacama cosmology_telescope_measuring_radio_galaxy_bias_through_cross_cor...
The atacama cosmology_telescope_measuring_radio_galaxy_bias_through_cross_cor...Sérgio Sacani
 
Insertion layer in a mid ir band-pass filter structure to improve optical tra...
Insertion layer in a mid ir band-pass filter structure to improve optical tra...Insertion layer in a mid ir band-pass filter structure to improve optical tra...
Insertion layer in a mid ir band-pass filter structure to improve optical tra...Alexander Decker
 
SFScon21 - Roberto Confalonieri - Boyuan Sun - Hyper-spectral image classific...
SFScon21 - Roberto Confalonieri - Boyuan Sun - Hyper-spectral image classific...SFScon21 - Roberto Confalonieri - Boyuan Sun - Hyper-spectral image classific...
SFScon21 - Roberto Confalonieri - Boyuan Sun - Hyper-spectral image classific...South Tyrol Free Software Conference
 
Method for measuring or investigation of fiber structure
Method for measuring or investigation of fiber structureMethod for measuring or investigation of fiber structure
Method for measuring or investigation of fiber structureShawan Roy
 
The Indices of Refraction of Molecular-Beam Epitaxy–Grown BexZn1–xTe Ternary ...
The Indices of Refraction of Molecular-Beam Epitaxy–Grown BexZn1–xTe Ternary ...The Indices of Refraction of Molecular-Beam Epitaxy–Grown BexZn1–xTe Ternary ...
The Indices of Refraction of Molecular-Beam Epitaxy–Grown BexZn1–xTe Ternary ...Oleg Maksimov
 
The open cluster_ngc6520_and_the_nearby_dark_molecular_cloud_barnard_86
The open cluster_ngc6520_and_the_nearby_dark_molecular_cloud_barnard_86The open cluster_ngc6520_and_the_nearby_dark_molecular_cloud_barnard_86
The open cluster_ngc6520_and_the_nearby_dark_molecular_cloud_barnard_86Sérgio Sacani
 
Methods of investigation of structure
Methods of investigation of structureMethods of investigation of structure
Methods of investigation of structureSCE.Surat
 
Phase contrast microscopy Likhith K
Phase contrast microscopy Likhith KPhase contrast microscopy Likhith K
Phase contrast microscopy Likhith KLIKHITHK1
 
X ray emission-from_strongly_asymmetric_circumstellar_material_in_the_remnant...
X ray emission-from_strongly_asymmetric_circumstellar_material_in_the_remnant...X ray emission-from_strongly_asymmetric_circumstellar_material_in_the_remnant...
X ray emission-from_strongly_asymmetric_circumstellar_material_in_the_remnant...Sérgio Sacani
 
Radiation performance enhancement of an ultra wide band antenna using metamat...
Radiation performance enhancement of an ultra wide band antenna using metamat...Radiation performance enhancement of an ultra wide band antenna using metamat...
Radiation performance enhancement of an ultra wide band antenna using metamat...IJECEIAES
 
Too much pasta_for_pulsars_to_spin_down
Too much pasta_for_pulsars_to_spin_downToo much pasta_for_pulsars_to_spin_down
Too much pasta_for_pulsars_to_spin_downSérgio Sacani
 
Study of magnetic and structural and optical properties of Zn doped Fe3O4 nan...
Study of magnetic and structural and optical properties of Zn doped Fe3O4 nan...Study of magnetic and structural and optical properties of Zn doped Fe3O4 nan...
Study of magnetic and structural and optical properties of Zn doped Fe3O4 nan...Nanomedicine Journal (NMJ)
 
Comparison of 7 Epithermal Neutron Beams
Comparison of 7 Epithermal Neutron BeamsComparison of 7 Epithermal Neutron Beams
Comparison of 7 Epithermal Neutron Beamskent.riley
 

What's hot (20)

NIR Three dimensional imaging of breast model using f-DOT
NIR Three dimensional imaging of breast model using f-DOT  NIR Three dimensional imaging of breast model using f-DOT
NIR Three dimensional imaging of breast model using f-DOT
 
Agu 2013 john_armston
Agu 2013 john_armstonAgu 2013 john_armston
Agu 2013 john_armston
 
Construction of inexpensive Web-Cam based Optical Spectrometer using
Construction of inexpensive Web-Cam based Optical Spectrometer usingConstruction of inexpensive Web-Cam based Optical Spectrometer using
Construction of inexpensive Web-Cam based Optical Spectrometer using
 
apj_782_2_102
apj_782_2_102apj_782_2_102
apj_782_2_102
 
International Journal of Biometrics and Bioinformatics(IJBB) Volume (1) Issue...
International Journal of Biometrics and Bioinformatics(IJBB) Volume (1) Issue...International Journal of Biometrics and Bioinformatics(IJBB) Volume (1) Issue...
International Journal of Biometrics and Bioinformatics(IJBB) Volume (1) Issue...
 
The atacama cosmology_telescope_measuring_radio_galaxy_bias_through_cross_cor...
The atacama cosmology_telescope_measuring_radio_galaxy_bias_through_cross_cor...The atacama cosmology_telescope_measuring_radio_galaxy_bias_through_cross_cor...
The atacama cosmology_telescope_measuring_radio_galaxy_bias_through_cross_cor...
 
Insertion layer in a mid ir band-pass filter structure to improve optical tra...
Insertion layer in a mid ir band-pass filter structure to improve optical tra...Insertion layer in a mid ir band-pass filter structure to improve optical tra...
Insertion layer in a mid ir band-pass filter structure to improve optical tra...
 
SFScon21 - Roberto Confalonieri - Boyuan Sun - Hyper-spectral image classific...
SFScon21 - Roberto Confalonieri - Boyuan Sun - Hyper-spectral image classific...SFScon21 - Roberto Confalonieri - Boyuan Sun - Hyper-spectral image classific...
SFScon21 - Roberto Confalonieri - Boyuan Sun - Hyper-spectral image classific...
 
Method for measuring or investigation of fiber structure
Method for measuring or investigation of fiber structureMethod for measuring or investigation of fiber structure
Method for measuring or investigation of fiber structure
 
The Indices of Refraction of Molecular-Beam Epitaxy–Grown BexZn1–xTe Ternary ...
The Indices of Refraction of Molecular-Beam Epitaxy–Grown BexZn1–xTe Ternary ...The Indices of Refraction of Molecular-Beam Epitaxy–Grown BexZn1–xTe Ternary ...
The Indices of Refraction of Molecular-Beam Epitaxy–Grown BexZn1–xTe Ternary ...
 
The open cluster_ngc6520_and_the_nearby_dark_molecular_cloud_barnard_86
The open cluster_ngc6520_and_the_nearby_dark_molecular_cloud_barnard_86The open cluster_ngc6520_and_the_nearby_dark_molecular_cloud_barnard_86
The open cluster_ngc6520_and_the_nearby_dark_molecular_cloud_barnard_86
 
Methods of investigation of structure
Methods of investigation of structureMethods of investigation of structure
Methods of investigation of structure
 
Phase contrast microscopy Likhith K
Phase contrast microscopy Likhith KPhase contrast microscopy Likhith K
Phase contrast microscopy Likhith K
 
X ray emission-from_strongly_asymmetric_circumstellar_material_in_the_remnant...
X ray emission-from_strongly_asymmetric_circumstellar_material_in_the_remnant...X ray emission-from_strongly_asymmetric_circumstellar_material_in_the_remnant...
X ray emission-from_strongly_asymmetric_circumstellar_material_in_the_remnant...
 
Analysis of diffraction patterns generated through TEM
Analysis of diffraction patterns generated through TEMAnalysis of diffraction patterns generated through TEM
Analysis of diffraction patterns generated through TEM
 
Radiation performance enhancement of an ultra wide band antenna using metamat...
Radiation performance enhancement of an ultra wide band antenna using metamat...Radiation performance enhancement of an ultra wide band antenna using metamat...
Radiation performance enhancement of an ultra wide band antenna using metamat...
 
Too much pasta_for_pulsars_to_spin_down
Too much pasta_for_pulsars_to_spin_downToo much pasta_for_pulsars_to_spin_down
Too much pasta_for_pulsars_to_spin_down
 
Study of magnetic and structural and optical properties of Zn doped Fe3O4 nan...
Study of magnetic and structural and optical properties of Zn doped Fe3O4 nan...Study of magnetic and structural and optical properties of Zn doped Fe3O4 nan...
Study of magnetic and structural and optical properties of Zn doped Fe3O4 nan...
 
principles of xrd
principles of xrdprinciples of xrd
principles of xrd
 
Comparison of 7 Epithermal Neutron Beams
Comparison of 7 Epithermal Neutron BeamsComparison of 7 Epithermal Neutron Beams
Comparison of 7 Epithermal Neutron Beams
 

Similar to Classification of Radar Returns from Ionosphere Using NB-Tree and CFS

Serendipitous discovery of an extended xray jet without a radio counterpart i...
Serendipitous discovery of an extended xray jet without a radio counterpart i...Serendipitous discovery of an extended xray jet without a radio counterpart i...
Serendipitous discovery of an extended xray jet without a radio counterpart i...Sérgio Sacani
 
Comaskey_William_Poster_SULI_FALL_2014
Comaskey_William_Poster_SULI_FALL_2014Comaskey_William_Poster_SULI_FALL_2014
Comaskey_William_Poster_SULI_FALL_2014William Comaskey
 
Combined strong weak_lensing_analysis_from_sloan_giant_arcs_survey
Combined strong weak_lensing_analysis_from_sloan_giant_arcs_surveyCombined strong weak_lensing_analysis_from_sloan_giant_arcs_survey
Combined strong weak_lensing_analysis_from_sloan_giant_arcs_surveySérgio Sacani
 
2016Nonlinear inversion of electrical resistivity imaging.pdf
2016Nonlinear inversion of electrical resistivity imaging.pdf2016Nonlinear inversion of electrical resistivity imaging.pdf
2016Nonlinear inversion of electrical resistivity imaging.pdfDUSABEMARIYA
 
IGARSS 2011 Arch.ppt
IGARSS 2011 Arch.pptIGARSS 2011 Arch.ppt
IGARSS 2011 Arch.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.pptgrssieee
 

Similar to Classification of Radar Returns from Ionosphere Using NB-Tree and CFS (20)

Serendipitous discovery of an extended xray jet without a radio counterpart i...
Serendipitous discovery of an extended xray jet without a radio counterpart i...Serendipitous discovery of an extended xray jet without a radio counterpart i...
Serendipitous discovery of an extended xray jet without a radio counterpart i...
 
Comaskey_William_Poster_SULI_FALL_2014
Comaskey_William_Poster_SULI_FALL_2014Comaskey_William_Poster_SULI_FALL_2014
Comaskey_William_Poster_SULI_FALL_2014
 
Combined strong weak_lensing_analysis_from_sloan_giant_arcs_survey
Combined strong weak_lensing_analysis_from_sloan_giant_arcs_surveyCombined strong weak_lensing_analysis_from_sloan_giant_arcs_survey
Combined strong weak_lensing_analysis_from_sloan_giant_arcs_survey
 
2016Nonlinear inversion of electrical resistivity imaging.pdf
2016Nonlinear inversion of electrical resistivity imaging.pdf2016Nonlinear inversion of electrical resistivity imaging.pdf
2016Nonlinear inversion of electrical resistivity imaging.pdf
 
IGARSS 2011 Arch.ppt
IGARSS 2011 Arch.pptIGARSS 2011 Arch.ppt
IGARSS 2011 Arch.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATAARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
ARCHAEOLOGICAL LAND USE CHARACTERIZATION USING MULTISPECTRAL REMOTE SENSING DATA
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 
IGARSS 2011.ppt
IGARSS 2011.pptIGARSS 2011.ppt
IGARSS 2011.ppt
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementationijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospectsijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Studyijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadikuijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Mapijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Societyijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learningijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxabhijeetpadhi001
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 

Recently uploaded (20)

What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 

Classification of Radar Returns from Ionosphere Using NB-Tree and CFS

  • 1. @ IJTSRD | Available Online @ www.ijtsrd.com ISSN No: 2456 International Research Classification o Using NB University of Information Technology, Myanmar ABSTRACT This paper present an experimental different classifiers namely Naïve Bayes (NB) and NB-Tree for classification of radar returns from Ionosphere dataset. Correlation-based Feature Subset Selection (CFS) is also used for attribute selection. The purpose is to achieve the efficie classification. The comparison of NB classifier and NB-Tree is done based on Ionosphere dataset from UCI machine learning repository. NB- with CFS gives better accuracy for classification of radar returns from ionosphere. KEYWORD: classification, feature selection, NB, NB-Tree, CFS 1. INTRODUCTION Classification is one of the important decision making tasks for many real problems. Classification will be used when an object needs to be classified into a predefined class or group based on attributes of that object. Classification is a supervised procedure that learns to classify new instances based on the knowledge learnt from a previously classified training set of instances. It takes a set of data already divided into predefined groups and searches for patterns in the data that differentiate those groups supervised learning, pattern recognition and prediction. Typical Classification Algorithms are Decision trees, rule based induction, neural networks, genetic algorithms and Naïve Bayes, etc. Feature selection is one of the key topics in data mining; it improves classification performance by searching for the subset of features. In problem of high dimensional feature space, some of the features may be redundant or irrelevant. Removi redundant or irrelevant features is very important; @ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 5 | Jul-Aug 2018 ISSN No: 2456 - 6470 | www.ijtsrd.com | Volume International Journal of Trend in Scientific Research and Development (IJTSRD) International Open Access Journal Classification of Radar Returns from Ionosphere Using NB-Tree and CFS Aung Nway Oo University of Information Technology, Myanmar This paper present an experimental study of the different classifiers namely Naïve Bayes (NB) and Tree for classification of radar returns from based Feature Subset Selection (CFS) is also used for attribute selection. The purpose is to achieve the efficient result for classification. The comparison of NB classifier and Tree is done based on Ionosphere dataset from -Tree classifier with CFS gives better accuracy for classification of classification, feature selection, NB, Classification is one of the important decision making tasks for many real problems. Classification will be used when an object needs to be classified into a based on attributes of that object. Classification is a supervised procedure that learns to classify new instances based on the knowledge learnt from a previously classified training set of instances. It takes a set of data already divided groups and searches for patterns in the data that differentiate those groups supervised learning, pattern recognition and prediction. Typical Classification Algorithms are Decision trees, rule- based induction, neural networks, genetic algorithms Feature selection is one of the key topics in data fication performance by searching for the subset of features. In problem of high dimensional feature space, some of the features may be redundant or irrelevant. Removing these redundant or irrelevant features is very important; hence they may deteriorate the performance of classifiers. Feature selection involves finding a subset of features to improve prediction accuracy or decrease the size of the structure without sig decreasing prediction accuracy of the classi using only the selected features [7]. In this paper, we evaluate the classification of ionosphere dataset using WEKA data mining tool. The paper is organized as follows. Overview of Ionosphere is described in section 3. We outline overview of Naïve Bayes in section 3 and NB classifier in Section 4. Section 5 presents the Correlation-based Feature Subset Selection (CFS). The experimental results and conclusions are presented in Section 6 and 7 respectively. 2. OVERVIEW OF IONOSPHERE The ionosphere is defined as the layer of the Earth's atmosphere that is world ionized by solar and cosmic radiation. It lies 75-1000 km (46 Earth. (The Earth’s radius is 6370 km, thickness of the ionosphere is quite tiny compared with the size of Earth.) Because of the high energy from the Sun and from cosmic rays, the atoms in this area have been stripped of one or more of their electrons, or “ionized,” and are therefore po charged. The ionized electrons behave as free particles. The Sun's upper atmosphere, the corona, is very hot and produces a constant stream of plasma and UV and X-rays that flow out from the Sun and affect, or ionize, the Earth's ionosphere. Only Earth’s ionosphere is being ionized by the Sun at any time [8]. Aug 2018 Page: 1640 6470 | www.ijtsrd.com | Volume - 2 | Issue – 5 Scientific (IJTSRD) International Open Access Journal f Radar Returns from Ionosphere hence they may deteriorate the performance of fiers. Feature selection involves finding a subset of features to improve prediction accuracy or decrease the size of the structure without significantly decreasing prediction accuracy of the classifier built using only the selected features [7]. In this paper, we evaluate the classification of ionosphere dataset using WEKA data mining tool. The paper is organized as follows. Overview of Ionosphere is described in section 3. We outline overview of Naïve Bayes in section 3 and NB-Tree classifier in Section 4. Section 5 presents the based Feature Subset Selection (CFS). The experimental results and conclusions are ction 6 and 7 respectively. OVERVIEW OF IONOSPHERE The ionosphere is defined as the layer of the Earth's atmosphere that is world ionized by solar and cosmic 1000 km (46-621 miles) above the Earth. (The Earth’s radius is 6370 km, so the thickness of the ionosphere is quite tiny compared with the size of Earth.) Because of the high energy from the Sun and from cosmic rays, the atoms in this area have been stripped of one or more of their electrons, or “ionized,” and are therefore positively charged. The ionized electrons behave as free particles. The Sun's upper atmosphere, the corona, is very hot and produces a constant stream of plasma rays that flow out from the Sun and affect, or ionize, the Earth's ionosphere. Only half the Earth’s ionosphere is being ionized by the Sun at any
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470 @ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 5 | Jul-Aug 2018 Page: 1641 During the night, without interference from the Sun, cosmic rays ionize the ionosphere, though not nearly as strongly as the Sun. These high energy rays originate from sources throughout our own galaxy and the universe -- rotating neutron stars, supernovae, radio galaxies, quasars and black holes. Thus the ionosphere is much less charged at night-time, which is why a lot of ionospheric effects are easier to spot at night – it takes a smaller change to notice them. The ionosphere has major importance to us because, among other functions, it influences radio propagation to distant places on the Earth, and between satellites and Earth. For the very low frequency (VLF) waves that the space weather monitors track, the ionosphere and the ground produce a “waveguide” through which radio signals can bounce and make their way around the curved Earth. 3. NAÏVE BAYES CLASSIFIER Naïve Bayesian classifiers assume that there are no dependencies amongst attributes. The Bayesian Classification represents a supervised learning method as well as a statistical method for classification. Assumes an underlying probabilistic model and it allows us to capture uncertainty about the model in a principled way by determining probabilities of the outcomes. It is made to simplify the computations involved and, hence is called "naive" [2]. This classifier is also called idiot Bayes, simple Bayes, or independent Bayes [3]. NB is one of the 10 top algorithms in data mining as listed by Wu et al. (2008). Let C denote the class of an observation X. To predict the class of the observation X by using the Bayes rule, the highest posterior probability of P(C|X) = ( ) ( | ) ( ) (1) should be found. In the NB classifier, using the assumption that featuresX1, X2,..., Xn are conditionally independent of each other given the class, we get P(C|X) = ( ) ∏ ( | ) ( ) (2) In classification problems, Equation (2) is sufficient to predict the most probable class given a test observation. 4. NAÏVE BAYES TREE CLASSIFIER The NB-Tree provides a simple and compact means to indexing high–dimensional data points of variable dimension, using a light mapping function that is computationally inexpensive. The basic idea of the NB-Tree is to use the Euclidean norm value as the index key for high–dimensional points. NBTree is a hybrid algorithm with Decision Tree and Naïve- Bayes. In this algorithm the basic concept of recursive partitioning of the schemes remains the same but here the difference is that the leaf nodes are naïve Bayes categorizers and will not have nodes predicting a single class [5]. Although the attribute independence assumption of naive Bayes is always violated on the whole training data, it could be expected that the dependencies within the local training data is weaker than that on the whole training data. Thus, NB-Tree [4] builds a naive Bayes classifier on each leaf node of the built decision tree, which just integrate the advantages of the decision tree classifiers and the Naive Bayes classifiers. Simply speaking, it firstly uses decision tree to segment the training data, in which each segment of the training data is represented by a leaf node of tree, and then builds a naive Bayes classifier on each segment. A fundamental issue in building decision trees is the attribute selection measure at each non-terminal node of the tree. Namely, the utility of each non-terminal node and a split needs to be measured in building decision trees. NB-Tree significantly outperforms Naïve Bayes in terms of classification performance indeed. However, it incurs the high time complexity, because it needs to build and evaluate Naive Bayes classifiers again and again in creating a split. 5. CORRELATION-BASED FEATURE SUBSET SELECTION (CFS) CFS evaluates and ranks feature subsets rather than individual features. It prefers the set of attributes that are highly correlated with the class but with low intercorrelation [6]. With CFS various heuristic searching strategies such as hill climbing and best first are often applied to search the feature subsets space in reasonable time. CFS first calculates a matrix of feature-class and feature-feature correlations from the training data and then searches the feature subset space using a best first. Equation 1 (Ghiselli 1964) for CFS is Merits = ⃐ ( )⃐ (3)
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) ISSN: 2456-6470 @ IJTSRD | Available Online @ www.ijtsrd.com | Volume – 2 | Issue – 5 | Jul-Aug 2018 Page: 1642 Where Merits is the correlation between the summed feature subset S, k is the number of subset feature, 𝑟𝑐𝑓⃐ is the average of the correlation between the subsets feature and the class variable, and 𝑟𝑓𝑓⃐ is the average inter-correlation between subset features. 6. EXPERIMENTAL RESULTS This radar data was collected by a system in Goose Bay, Labrador. This system consists of a phased array of 16 high-frequency antennas with a total transmitted power on the order of 6.4 kilowatts. The targets were free electrons in the ionosphere. "Good" radar returns are those showing evidence of some type of structure in the ionosphere. "Bad" returns are those that do not; their signals pass through the ionosphere. Received signals were processed using an autocorrelation function whose arguments are the 66% of dataset is used for training. The dataset is collected from UCI repository. The WEKA data mining tool is used for evaluation and testing of algorithm. The following tables show the experimental results of different classifiers time of a pulse and the pulse number. There were 17 pulse numbers for the Goose Bay system. Instances in this database are described by 2 attributes per pulse number, corresponding to the complex values returned by the function resulting from the complex electromagnetic signal. The dataset contains 351 instances and 35 attributes [1]. Table1. Accuracy results of classifiers Naïve Bayes NB Tree NB-Tree+CFS 82.3529 % 88.2353 % 89.916 % Table2. Test results of Classifications Naïve Bayes NB- Tree NB Tree+CFS Correctly Classified Instances 98 105 107 Incorrectly Classified Instances 21 14 12 Kappa statistic 0.6474 0.7583 0.7936 Mean absolute error 0.1647 0.1294 0.1144 Root mean squared error 0.3866 0.3118 0.2978 Relative absolute error 34.3174 % 26.9712 % 23.8381 % Root relative squared error 75.2862 % 60.7123 % 58.0024 % 7. CONCLUSION The paper proposed the comparative analysis of Naïve Bayes and NB-Tree classifier. The experimental showed that the accuracy of Naïve Bayes classifier is 82.3529 % and NB Tree is 88.2353 %. According to the evaluation results, the highest accuracy 89.916% is found in NB-Tree classifier using Correlation-based Feature Subset Selection. REFERENCES 1. http://archive.ics.uci.edu 2. J. Han and M. Kamber, Data Mining: Concepts and Techniques. Morgan-Kaufmann Publishers, San Francisco, 2001. 3. T. Miquelez, E. Bengoetxea, P. Larranaga, “Evolutionary Computation based on Bayesian Classifier,” Int. J. Appl. Math. Comput. Sci. vol. 14(3), pp. 335 – 349, 2004. 4. R. Kohavi, “Scaling up the accuracy of naive- bayes classifiers: A decision-tree hybrid,” ser. Proceedings of the Second International Conference on Knowledge Discovery and Data Mining. AAAI Press, 1996, pp. 202–207. 5. R. Kohavi. “Scaling Up the Accuracy of Naive-Bayes Classifiers: a Decision-Tree Hybrid” Proceedings of the Second International Conference on Knowledge Discovery and Data Mining, 1996. 6. I.H. Witten, E. Frank, M.A. Hall “ Data Mining Practical Machine Learning Tools & Techniques” Third edition, Pub. – Morgan kouffman. 7. D. Koller, and M. Sahami,” Toward optimal feature selection” In proceedings of international conference on machine learning, Bari, (Italy) pp. 284-92, 1996. 8. http://solar-center.stanford.edu