ANN Classifier Using MATLAB
ANN Classifier Using MATLAB
Presented By
U.Ashadevi
Research Scholar (FT-PhD)
Department of Instrumentation Engineering
MIT Campus, Anna University
http://mlearn.ics.uci.edu/MLRepository.html
Murphy,P.M., Aha, D.W. (1994). UCI Repository of machine learning databases Irvine, CA: University of
California, Department of Information and Computer Science.
This dataset can be used to design a neural network that classifies cancers as either benign or malignant
depending on the characteristics of sample biopsies.
1. Clump thickness
2. Uniformity of cell size
3. Uniformity of cell shape
CancerTargets - a 2x699 matrix where each column indicates a correct category with a one in either element 1
or element 2.
1. Benign
2. Malignant
Inputs 'cancerInputs' is a 9x699 matrix, representing static data: 699 samples of 9 elements.
Targets 'cancerTargets' is a 2x699 matrix, representing static data: 699 samples of 2 elements.
Where is the input normalized to lie between 0 and 1, is the original value of the feature , is the
minimum value of the feature and , is the maximum value of the feature. This process scales all
values between 0 and 1.
• min_val = min(data);
• max_val = max(data);
•13/02/2025
disp(normalized_data); Workshop on "Machine learning and Deep learning for biomed 20
ical applications"
Cont.,
• disp(denormalized_ classification);