SlideShare a Scribd company logo
1 of 10
Download to read offline
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 1
Research Article
Prognosticating Autism Spectrum Disorder Using Artificial Neural
Network: Levenberg-Marquardt Algorithm
Avishek Choudhury*, Christopher M Greene
Binghamton University, New York, USA
*Corresponding Author: Avishek Choudhury, Binghamton University, Systems Science and Industrial
Engineering, Engineering Building, L2, Vestal, NY 13902, USA, Tel: +1 (806) 500-8025; E-mail:
achoud13@binghamton.edu
Received: 29 August 2018; Accepted: 05 September 2018; Published: 13 September 2018
Abstract
Autism spectrum condition (ASC) or autism spectrum disorder (ASD) is primarily identified with the help of
behavioral indications encompassing social, sensory and motor characteristics. Although categorized, recurring
motor actions are measured during diagnosis, quantifiable measures that ascertain kinematic physiognomies in the
movement configurations of autistic persons are not adequately studied, hindering the advances in understanding the
etiology of motor mutilation. Subject aspects such as behavioral characters that influences ASD need further
exploration. Presently, limited autism datasets concomitant with screening ASD are available, and a majority of
them are genetic. Hence, in this study, we used a dataset related to autism screening enveloping ten behavioral and
ten personal attributes that have been effective in diagnosing ASD cases from controls in behavior science. ASD
diagnosis is time exhaustive and uneconomical. The burgeoning ASD cases worldwide mandate a need for the fast
and economical screening tool. Our study aimed to implement an artificial neural network with the Levenberg-
Marquardt algorithm to detect ASD and examine its predictive accuracy. Consecutively, develop a clinical decision
support system for early ASD identification.
Keywords: Neural networks; The Levenberg-Marquardt algorithm; Clinal decision support system; Autism
diagnosis
1. Introduction
Autism spectrum disorder (ASD) is a faction of polygenetic evolving brain disarray accompanied with behavioral
and cognitive mutilation [1]. It is a lifelong neurodevelopmental illness depicted by insufficiencies in
communication, interaction and constrained behavior [2]. Though ASD is identified mainly by behavioral and social
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 2
physiognomies, autistic individuals often exhibit tainted motor ability such as reduced physical synchronization,
unstable body balance and unusual posture and movement patterns [3-5]. Individuals with ASD show stereotypical
recurring actions, constrained interests, a privation of instinct control, speech insufficiencies, compromised intellect
and social skills compared to typically developing (TD) children [6]. There has been well-established work done in
diagnosing ASD using kinematic physiognomies.
Guha et al. [7] used gesticulation data to measure atypicality variance in facial expressions of children with and
without ASD. Six facial reactions were securitized using information theory, statistical analysis and time- series
modeling. Recently researchers have engrossed in refining and implementing data analytics as a diagnosis tool for
ASD. Being an efficient computational tool machine learning has disclosed its potential for classification in the
various domain [8-9]. Therefore, some literature has employed machine learning methods to identify neural [10]
[11] or behavioral markers [12-13] responsible for discriminating individuals with and without ASD. Stahl et al.
[10] studied the influence of eye gaze to classify infant groups with a high or low risk of getting ASD.
Computational methods such as discriminant functions analysis with an accuracy of 0.61, support vector machine
with an accuracy of 0.64, and linear discrimination analysis with an accuracy of 0.56 were implemented. Bone in
2016 [14] retrieved data from The Autism Diagnostic Interview-Revised and The Social Responsiveness Scale and
applied SVM machine learning classifier to a significant group individual with and without ASD and obtained
promising results and demonstrated that machine learning could be used as a useful tool for ASD diagnosis. Grossi
et al. employed artificial neural networks (ANNs) to develop a predictive model using a dataset comprising of 27
potential pregnancy risk elements in autism development [15]. The artificial neural network produced a predictive
accuracy of 80%. Their study supported and encouraged the use of ANNs as an excellent diagnostic screening tool
for ASD. The highest classification accuracy obtained so far is 96.7% using SVM.
With the aim of developing a clinical decision support system, we implement artificial neural networks with the
Levenberg-Marquardt algorithm on data set that contains ten behavioral and ten personal attributes of adults with
and without ASD.
2. Methodology
This study does not involve any participation of human subjects. We extracted the data from the UCI library. The
data and data description is provided with this paper. It consists of 20 predictors (ten behavioral and ten personal
attributes), one response variable ad 704 instances. The methodology designed for this study can be divided into (a)
data preprocessing, (b) designing the model, and (c) fitting and evaluating the model.
2.1 Data preprocessing
Data preprocessing is one of the most critical steps in all machine learning application. In this study, we did not use
missing data points and partitioned the dataset into training, testing and selection instances. The following pie chart
(figure 1a) details the uses of all the instances in the dataset. The total number of instances is 704, that contains 424
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 3
(60.2%) training instances, 140 (19.9%) of selection instances, and 140 (19.9%) of testing instances. The following
pie chart includes all the missing values.
Figure 1: (a) Shows the partitioned data; (b) Shows the number of instances belonging to each class in the dataset.
The pie chart above (figure 1b) displays the partitioning of the dataset (excluding all missing values). The number of
instances with negative Class/ASD (blue) is 222, and the number of instances with positive Class/ASD (purple) is
90. This figure also shows that the data is unbalanced. However, we did not implement any data balancing method.
2.2 Designing the model
In this step we calculated the suitable training algorithm for our dataset and determined the complexity of the model,
that is the optimal number of neurons in the network.
2.2.1 The levenberg–marquardt algorithm: Kenneth Levenberg and Donald Marquardt developed The
Levenberg–Marquardt algorithm (LM) [16-17] that generates a mathematical solution to a problem of minimizing a
non- linear function. We used this algorithm because in the domain of artificial neural-networks it is fast and has
stable convergence. The LM algorithm approaches the second-order training speed without calculating the Hessian
matrix. It holds good when the loss function has the arrangement of a sum of squares. LM is an optimization
algorithm that outperforms simple gradient descent and conjugate gradient methods in a diverse assortment of
problems. LM algorithm follows equation 1 as shown below.
(1)
where J is the Jacobian matrix, T stands for transpose, k is the index of iteration, e is the training error and w is the
weight vector.
The following Table 1 shows a brief description of the parameters used for this algorithm.
a b
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 4
Parameters Description Value
Damping parameter factor Damping parameter increase/decrease factor. 10
Minimum parameter increment norm Norm of the parameter increment vector at which training stops. 0.001
Minimum loss increase Minimum loss improvement between two successive iterations 1e-12
Performance goal Goal value for the loss 1e-12
Gradient norm goal Goal value for the norm of the objective function gradient 0.001
Maximum selection loss increase Maximum number of iterations at which the selection loss increases 100
Maximum iterations number Maximum number of iterations to perform the training. 1000
Table 1: The Levenberg-Marquardt algorithm description.
2.2.2 Order selection algorithm: For better performance of the model, we implemented an incremental order
selection algorithm to achieve a model with the best complexity to produce an adequate fit of the data. Incremental
selection order is the naivest order selection algorithm. This method begins with a least order and upsurges the size
of the hidden layer of neurons until a desired order is attained. The order selection algorithm determines the optimal
number of neurons in the network. Incremental order selection enhances the ability of the model to predict the result
with a new data. Two recurrent problems that hinder the design of a neural network are underfitting and overfitting.
The best simplification is attained by designing a model whose complexity is appropriate to produce the best fit
model. Underfitting can occur if the model is too simple, whereas overfitting is defined as the effect of a selection
error burgeoning due to an over-complex model. The next figure 2 illustrates the training and selection errors as a
function of the order of a neural network.
Figure 1: Effect of model complexity on Overfitting and Underfitting.
2.3 Fitting and evaluating the model
After designing the appropriate model, we deployed it on our preprocessed dataset and computed the following
performance measures: (a) Accuracy, (b) Sum squared error, (c) mean squared error, (d) root mean squared error, (e)
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 5
normalized squared error, (f) cross-entropy error, (g) Minkowski error, and (h) weighted squared error. Additionally,
the area under the ROC curve, miss-classification, cumulative gain, lift chart and model loss index were observed
for better understanding and evaluation of the model’s performance.
3. Results
Implementing the Levenberg–Marquardt algorithm and incremental order selection enabled the proposed model to
produce a classification accuracy of 98.38%. The following table 2 shows the training results obtained by the
Levenberg-Marquardt algorithm. They include final states from the neural network, the loss function, and the
training algorithm. The number of iterations needed to converge is found to be zero, which infers that the training
algorithm did not modify the state of the neural network.
Parameters Value
Final parameters norm 14.5
Final loss 9.89e-05
Final selection loss 0.00122
Final gradient norm 0.00036
Iteration number 0
Elapsed time 0
Stopping criterion Gradient norm goal
Table 2: The result obtained from the Levenberg-Marquardt algorithm.
The optimal number of neurons was calculated to be 1. The figure 3 displays the loss history for the different subsets
during the incremental order selection process. The blue line represents the training loss, and the red line symbolizes
the selection loss.
Figure 3: Loss history for different subsets obtained during incremental order selection algorithm.
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 6
Parameters Value
Optimal order 1
Optimum training loss 8.2344e-05
Optimum selection loss 0.00313
Iteration number 20
Table 3: Final output obtained from incremental order selection algorithm.
3.1 Testing errors
This task measures all the losses of the model. It considers every used instance and evaluates the model for each use.
The table 4 below shows all the training, testing and selection errors of the data.
Errors Training Selection Testing
Sum squared error 0.0032 0.0796 0.3243
Mean squared error 1.7360e- 05
0.0012 0.0052
Root mean squared error 0.0041 0.0358 0.0723
Normalized squared error 7.0236e-05
0.0052 0.0210
Cross- entropy error 0.0036 0.0134 0.0188
Minkowski error 0.0459 0.2236 0.4722
Weighted squared error 9.8919e- 05
0.0122 0.0241
Table 4: All performance measures (Testing errors).
3.2 Confusion table
This section shows the correct and miss classifications made by the model on the testing dataset. The table 5 below
is termed as a confusion matrix. The rows in the table denotes the target variables, whereas the columns represent
the output classes belonging to the testing dataset. The diagonal cells depict the correctly classified, and the off-
diagonal cells indicates the misclassified instances.
The decision threshold is considered to be 0.5. The table shows 61 correctly classified instances and one
misclassified instance.
Instances Predicted positive Predicted negative
Actual positive 33 0
Actual negative 1 28
Table 5: Confusion table showing positive and negative classification.
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 7
Classification accuracy was then calculated from the confusion matrix using the following equation 2:
[(Correct prediction) / (Total predicted)] * 100 (2)
The following part of this section will evaluate the model’s performance based on ROC, Cumulative gain, Lift plot
and Loss index.
3.3 Receiver Operating Characteristic
A good way to analyze the loss is by plotting a ROC (Receiver Operating Characteristic) curve which is a graphical
illustration of how good the classifier distinguishes between the two dissimilar classes. This capacity for
discrimination is measured by calculating the area under the curve. ROC was found to be 1 with an optimal
threshold of 0.882. The figure 4 below shows the ROC curve obtained and the blue shaded region is the AUC.
Figure 4: ROC plot.
3.4 Cumulative Gain
The cumulative gain analysis is a pictorial representation that illustrates the benefit of implementing a predictive
model as opposed to randomness. The baseline represents the results that would be obtained without using a model.
The positive cumulative gain which shows on the y-axis the percentage of positive instances found against the
percentage of the population, which is represented on the x-axis.
Similarly, the negative cumulative gain represents the fraction of the negative instances found against the
population. The following figure 5 shows the results of the analysis in this case. The blue line represents the positive
cumulative gain, the red line shows the negative cumulative gain, and the grey line signifies the random cumulative
gain. Greater separation between the positive and negatives cumulative gain charts, indicates better performance of
the classifier.
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 8
Figure 5: Cumulative plot.
The maximum gain score of a cumulative gain is obtained by the computing the maximum difference between the
positive and the negative cumulative gain, i.e., it is the point where the percentage of positive instances found is
maximized, and the percentage of negative instances found is minimized. If we have a perfect model, this score
takes the value 1. The next table 6 shows the score in this case and the instances ratio for which it is reached.
Parameters Value
Instance ratio 0.55
Maximum gain score 0.97
Table 6: Maximum gain score.
3.5 Lift plot
A lift plot provides a visual aid for evaluating a predictive model loss. It consists of a lift curve and a baseline. Lift
curve represents the ratio between the positive events using a model and without using it. Baseline represents
randomness, i.e., not using a model. The figure 6 below shows the lift plot obtained for this study. The x-axis
displays the percentage of instances studied while the y-axis displays the ratio between the results predicted by the
model and the results without the model.
Figure 6: Lift plot.
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 9
3.6 Loss index
The loss index plays an essential role in the use of a neural network. It delineates the errand that the neural network
is designed to perform and provides a gauge of the quality of the desired learning. The loss index varies with
different applications. We implemented the weighted squared error as the error method which is especially useful
when the data set has unbalanced targets. That is, there are too few positives when compared to the negatives, or
vice versa. The following table 7 shows the exponent in error between the outputs from the neural network and the
targets in the dataset.
Variable Value
Positive weight 2.72
Negative weight 1
Table 7: Exponent in error between the output from the ANN and the target variable.
4. Conclusion
To our knowledge, this is the first attempt to examine identification of autism using the Levenberg-Marquardt
algorithm and incremental order selection in the field of artificial neural networks. Moreover, our model produced
the highest classification accuracy of 98.38%. Through this study, we highlighted the importance of the training
algorithm, order selection algorithm and selecting the required loss index to deal with unbalanced data. Based on the
observations and evaluation of the proposed model, it can be inferred that Neural network with the Levenberg-
Marquardt algorithm and incremental order selection is an appropriate tool for diagnosing ASD and can be deployed
as a clinical decision support system.
References
1. Rapin, Tuchman R. Autism: definition, neurobiology, screening, diagnosis. Pediatr Clin North Am. Pediatr Clin
North Am (2008): 1129-1146.
2. Baihua Li JMEG. American Psychiatric Association, Diagnostic and statistical manual of mental disorders.
PLOS One, American Psychiatric Publishing 12 (2017): 1-19.
3. Gowen E, Hamilton A. Motor abilities in autism: a review using a computational context. Journal of autism and
developmental disorders 43 (2013): 323-344.
4. Fournier K, Hass C, Naik S, et al. Motor coordination in autism spectrum disor- ders: A synthesis and meta-
analysis. Journal of autism and developmental disorders 40 (2010): 1227-1240.
5. Bhat, Landa R, Galloway J. Current perspectives on motor functioning in infants, children, and adults with
autism spectrum disorders. Physical Therapy 91 (2011): 1116-1129.
6. Kang S, Reilly MO, Rojeski L, et al. Effects of tangible and social reinforcers on skill acquisition, stereotyped
behavior, and task engagement in three children with autism spectrum disorders. Res Dev Disability 34 (2013):
739-744.
J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001
Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 10
7. Guha T, Yang Z, Ramakrishna A, et al. On quantifying facial expres- sion-related atypicality of children with
autism spectrum disorder. IEEE Int Conf Acoustics, Seech and Signal Processing (ICASSP) 803-807.
8. Mitchell T. Machine learning. Boston: McGraw-Hill 1997.
9. Kotsiantis S, Zaharakis I, Pintelas P. Supervised machine learning: A review of classification techniques. 2007.
10. Stahl D, Pickles A, Elsabbagh M, et al. Novel machine learning methods for ERP analysis: A validation from
research on infants at risk for autism. Developmental neuropsychology 37 (2012): 274-298.
11. Chanel G, Pichon S, Conty L, et al. Classification of autistic individuals and controls using cross-task
characterization of fMRI activity. NeuroImage: Clinical 10 (2016): 78-88.
12. Kosmicki J, Sochat V, Duda M et al. Searching for a minimal set of behaviors for autism detection through
feature selection-based machine learning. Translational psychiatry 5 (2015): 514.
13. Wall D, Kosmicki J, Deluca T, et al. Use of machine learning to shorten observation- based screening and
diagnosis of autism. Translational psychiatry 2 (2012): 100.
14. Bone D, Bishop S, Black M, et al. Use of machine learning to improve autism screening and diagnostic
instruments: effectiveness, efficiency, and multi-instrument fusion. Journal of Child Psychology and Psychiatry
57 (2016): 927-937.
15. Grossi E, Veggo F, Narzisi A, et al. Pregnancy risk factors in autism: a pilot study with artificial neural
networks. Pediatric research 79 (2016): 339-347.
16. Levenberg K. A method for the solution of certain problems in least squares. Quarterly of Applied
Mathematics. 5 (1944): 164-168.
17. Marquardt D. An algorithm for least-squares estimation of nonlinear parameters. SIAM Journal on Applied
Mathematics. 11 (1963): 431-441.
This article is an open access article distributed under the terms and conditions of the
Creative Commons Attribution (CC-BY) license 4.0
Citation: Avishek Choudhury, Christopher M Greene. Prognosticating Autism Spectrum Disorder Using Artificial
Neural Network: Levenberg-Marquardt Algorithm. Journal of Bioinformatics and Systems Biology 1 (2018): 001-010.

More Related Content

What's hot

An Artificial Neural Network Model for Neonatal Disease Diagnosis
An Artificial Neural Network Model for Neonatal Disease DiagnosisAn Artificial Neural Network Model for Neonatal Disease Diagnosis
An Artificial Neural Network Model for Neonatal Disease DiagnosisWaqas Tariq
 
IRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET Journal
 
Delineation of techniques to implement on the enhanced proposed model using d...
Delineation of techniques to implement on the enhanced proposed model using d...Delineation of techniques to implement on the enhanced proposed model using d...
Delineation of techniques to implement on the enhanced proposed model using d...ijdms
 
MLTDD : USE OF MACHINE LEARNING TECHNIQUES FOR DIAGNOSIS OF THYROID GLAND DIS...
MLTDD : USE OF MACHINE LEARNING TECHNIQUES FOR DIAGNOSIS OF THYROID GLAND DIS...MLTDD : USE OF MACHINE LEARNING TECHNIQUES FOR DIAGNOSIS OF THYROID GLAND DIS...
MLTDD : USE OF MACHINE LEARNING TECHNIQUES FOR DIAGNOSIS OF THYROID GLAND DIS...cscpconf
 
An approach of re-organizing input dataset to enhance the quality of emotion ...
An approach of re-organizing input dataset to enhance the quality of emotion ...An approach of re-organizing input dataset to enhance the quality of emotion ...
An approach of re-organizing input dataset to enhance the quality of emotion ...journalBEEI
 
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...IRJET Journal
 
Comparison of Machine Learning Techniques for Identification of Disease
Comparison of Machine Learning Techniques for Identification of DiseaseComparison of Machine Learning Techniques for Identification of Disease
Comparison of Machine Learning Techniques for Identification of DiseaseIJCSIS Research Publications
 
AN EFFICIENT PSO BASED ENSEMBLE CLASSIFICATION MODEL ON HIGH DIMENSIONAL DATA...
AN EFFICIENT PSO BASED ENSEMBLE CLASSIFICATION MODEL ON HIGH DIMENSIONAL DATA...AN EFFICIENT PSO BASED ENSEMBLE CLASSIFICATION MODEL ON HIGH DIMENSIONAL DATA...
AN EFFICIENT PSO BASED ENSEMBLE CLASSIFICATION MODEL ON HIGH DIMENSIONAL DATA...ijsc
 
Plant Leaf Disease Analysis using Image Processing Technique with Modified SV...
Plant Leaf Disease Analysis using Image Processing Technique with Modified SV...Plant Leaf Disease Analysis using Image Processing Technique with Modified SV...
Plant Leaf Disease Analysis using Image Processing Technique with Modified SV...Tarun Kumar
 
IRJET- Facial Expression Recognition System using Neural Network based on...
IRJET-  	  Facial Expression Recognition System using Neural Network based on...IRJET-  	  Facial Expression Recognition System using Neural Network based on...
IRJET- Facial Expression Recognition System using Neural Network based on...IRJET Journal
 
The Evaluated Measurement of a Combined Genetic Algorithm and Artificial Immu...
The Evaluated Measurement of a Combined Genetic Algorithm and Artificial Immu...The Evaluated Measurement of a Combined Genetic Algorithm and Artificial Immu...
The Evaluated Measurement of a Combined Genetic Algorithm and Artificial Immu...IJECEIAES
 
IRJET - A Review on Identification and Disease Detection in Plants using Mach...
IRJET - A Review on Identification and Disease Detection in Plants using Mach...IRJET - A Review on Identification and Disease Detection in Plants using Mach...
IRJET - A Review on Identification and Disease Detection in Plants using Mach...IRJET Journal
 
ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
 ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO... ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...cscpconf
 
Preprocessing and Classification in WEKA Using Different Classifiers
Preprocessing and Classification in WEKA Using Different ClassifiersPreprocessing and Classification in WEKA Using Different Classifiers
Preprocessing and Classification in WEKA Using Different ClassifiersIJERA Editor
 
Identification of Disease in Leaves using Genetic Algorithm
Identification of Disease in Leaves using Genetic AlgorithmIdentification of Disease in Leaves using Genetic Algorithm
Identification of Disease in Leaves using Genetic Algorithmijtsrd
 
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythm
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythmOntheclassificationof ee gsignalbyusingansvmbasedalgorythm
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythmKarthik S
 
IRJET- Detection and Classification of Leaf Diseases
IRJET-  	  Detection and Classification of Leaf DiseasesIRJET-  	  Detection and Classification of Leaf Diseases
IRJET- Detection and Classification of Leaf DiseasesIRJET Journal
 
ROLE OF CERTAINTY FACTOR IN GENERATING ROUGH-FUZZY RULE
ROLE OF CERTAINTY FACTOR IN GENERATING ROUGH-FUZZY RULEROLE OF CERTAINTY FACTOR IN GENERATING ROUGH-FUZZY RULE
ROLE OF CERTAINTY FACTOR IN GENERATING ROUGH-FUZZY RULEIJCSEA Journal
 
Autism_risk_factors
Autism_risk_factorsAutism_risk_factors
Autism_risk_factorsColleen Chen
 

What's hot (19)

An Artificial Neural Network Model for Neonatal Disease Diagnosis
An Artificial Neural Network Model for Neonatal Disease DiagnosisAn Artificial Neural Network Model for Neonatal Disease Diagnosis
An Artificial Neural Network Model for Neonatal Disease Diagnosis
 
IRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN Algorithm
 
Delineation of techniques to implement on the enhanced proposed model using d...
Delineation of techniques to implement on the enhanced proposed model using d...Delineation of techniques to implement on the enhanced proposed model using d...
Delineation of techniques to implement on the enhanced proposed model using d...
 
MLTDD : USE OF MACHINE LEARNING TECHNIQUES FOR DIAGNOSIS OF THYROID GLAND DIS...
MLTDD : USE OF MACHINE LEARNING TECHNIQUES FOR DIAGNOSIS OF THYROID GLAND DIS...MLTDD : USE OF MACHINE LEARNING TECHNIQUES FOR DIAGNOSIS OF THYROID GLAND DIS...
MLTDD : USE OF MACHINE LEARNING TECHNIQUES FOR DIAGNOSIS OF THYROID GLAND DIS...
 
An approach of re-organizing input dataset to enhance the quality of emotion ...
An approach of re-organizing input dataset to enhance the quality of emotion ...An approach of re-organizing input dataset to enhance the quality of emotion ...
An approach of re-organizing input dataset to enhance the quality of emotion ...
 
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
Prediction of Dengue, Diabetes and Swine Flu using Random Forest Classificati...
 
Comparison of Machine Learning Techniques for Identification of Disease
Comparison of Machine Learning Techniques for Identification of DiseaseComparison of Machine Learning Techniques for Identification of Disease
Comparison of Machine Learning Techniques for Identification of Disease
 
AN EFFICIENT PSO BASED ENSEMBLE CLASSIFICATION MODEL ON HIGH DIMENSIONAL DATA...
AN EFFICIENT PSO BASED ENSEMBLE CLASSIFICATION MODEL ON HIGH DIMENSIONAL DATA...AN EFFICIENT PSO BASED ENSEMBLE CLASSIFICATION MODEL ON HIGH DIMENSIONAL DATA...
AN EFFICIENT PSO BASED ENSEMBLE CLASSIFICATION MODEL ON HIGH DIMENSIONAL DATA...
 
Plant Leaf Disease Analysis using Image Processing Technique with Modified SV...
Plant Leaf Disease Analysis using Image Processing Technique with Modified SV...Plant Leaf Disease Analysis using Image Processing Technique with Modified SV...
Plant Leaf Disease Analysis using Image Processing Technique with Modified SV...
 
IRJET- Facial Expression Recognition System using Neural Network based on...
IRJET-  	  Facial Expression Recognition System using Neural Network based on...IRJET-  	  Facial Expression Recognition System using Neural Network based on...
IRJET- Facial Expression Recognition System using Neural Network based on...
 
The Evaluated Measurement of a Combined Genetic Algorithm and Artificial Immu...
The Evaluated Measurement of a Combined Genetic Algorithm and Artificial Immu...The Evaluated Measurement of a Combined Genetic Algorithm and Artificial Immu...
The Evaluated Measurement of a Combined Genetic Algorithm and Artificial Immu...
 
IRJET - A Review on Identification and Disease Detection in Plants using Mach...
IRJET - A Review on Identification and Disease Detection in Plants using Mach...IRJET - A Review on Identification and Disease Detection in Plants using Mach...
IRJET - A Review on Identification and Disease Detection in Plants using Mach...
 
ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
 ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO... ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
 
Preprocessing and Classification in WEKA Using Different Classifiers
Preprocessing and Classification in WEKA Using Different ClassifiersPreprocessing and Classification in WEKA Using Different Classifiers
Preprocessing and Classification in WEKA Using Different Classifiers
 
Identification of Disease in Leaves using Genetic Algorithm
Identification of Disease in Leaves using Genetic AlgorithmIdentification of Disease in Leaves using Genetic Algorithm
Identification of Disease in Leaves using Genetic Algorithm
 
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythm
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythmOntheclassificationof ee gsignalbyusingansvmbasedalgorythm
Ontheclassificationof ee gsignalbyusingansvmbasedalgorythm
 
IRJET- Detection and Classification of Leaf Diseases
IRJET-  	  Detection and Classification of Leaf DiseasesIRJET-  	  Detection and Classification of Leaf Diseases
IRJET- Detection and Classification of Leaf Diseases
 
ROLE OF CERTAINTY FACTOR IN GENERATING ROUGH-FUZZY RULE
ROLE OF CERTAINTY FACTOR IN GENERATING ROUGH-FUZZY RULEROLE OF CERTAINTY FACTOR IN GENERATING ROUGH-FUZZY RULE
ROLE OF CERTAINTY FACTOR IN GENERATING ROUGH-FUZZY RULE
 
Autism_risk_factors
Autism_risk_factorsAutism_risk_factors
Autism_risk_factors
 

Similar to Prognosticating Autism Spectrum Disorder Using Artificial Neural Network: Levenberg-Marquardt Algorithm

MULTI-PARAMETER BASED PERFORMANCE EVALUATION OF CLASSIFICATION ALGORITHMS
MULTI-PARAMETER BASED PERFORMANCE EVALUATION OF CLASSIFICATION ALGORITHMSMULTI-PARAMETER BASED PERFORMANCE EVALUATION OF CLASSIFICATION ALGORITHMS
MULTI-PARAMETER BASED PERFORMANCE EVALUATION OF CLASSIFICATION ALGORITHMSijcsit
 
An Efficient PSO Based Ensemble Classification Model on High Dimensional Data...
An Efficient PSO Based Ensemble Classification Model on High Dimensional Data...An Efficient PSO Based Ensemble Classification Model on High Dimensional Data...
An Efficient PSO Based Ensemble Classification Model on High Dimensional Data...ijsc
 
IRJET- Comparative Study of Machine Learning Models for Alzheimer’s Detec...
IRJET-  	  Comparative Study of Machine Learning Models for Alzheimer’s Detec...IRJET-  	  Comparative Study of Machine Learning Models for Alzheimer’s Detec...
IRJET- Comparative Study of Machine Learning Models for Alzheimer’s Detec...IRJET Journal
 
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...IRJET Journal
 
IRJET - Alzheimer’s Detection Model Using Machine Learning
IRJET - Alzheimer’s Detection Model Using Machine LearningIRJET - Alzheimer’s Detection Model Using Machine Learning
IRJET - Alzheimer’s Detection Model Using Machine LearningIRJET Journal
 
HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MININGAshish Salve
 
Prediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep LearningPrediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep LearningIRJET Journal
 
IRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET Journal
 
An Artificial Neural Network Based Medical Diagnosis of Mental Health Diseases
An Artificial Neural Network Based Medical Diagnosis of Mental Health DiseasesAn Artificial Neural Network Based Medical Diagnosis of Mental Health Diseases
An Artificial Neural Network Based Medical Diagnosis of Mental Health DiseasesNathanael Asaam
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningIRJET Journal
 
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...cscpconf
 
Risk Of Heart Disease Prediction Using Machine Learning
Risk Of Heart Disease Prediction Using Machine LearningRisk Of Heart Disease Prediction Using Machine Learning
Risk Of Heart Disease Prediction Using Machine LearningIRJET Journal
 
An Introduction To Artificial Intelligence And Its Applications In Biomedical...
An Introduction To Artificial Intelligence And Its Applications In Biomedical...An Introduction To Artificial Intelligence And Its Applications In Biomedical...
An Introduction To Artificial Intelligence And Its Applications In Biomedical...Jill Brown
 
Classification of physiological diseases using eeg signals and machine learni...
Classification of physiological diseases using eeg signals and machine learni...Classification of physiological diseases using eeg signals and machine learni...
Classification of physiological diseases using eeg signals and machine learni...eSAT Journals
 
Analyzing the behavior of different classification algorithms in diabetes pre...
Analyzing the behavior of different classification algorithms in diabetes pre...Analyzing the behavior of different classification algorithms in diabetes pre...
Analyzing the behavior of different classification algorithms in diabetes pre...IAESIJAI
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine LearningIRJET Journal
 
Pattern recognition system based on support vector machines
Pattern recognition system based on support vector machinesPattern recognition system based on support vector machines
Pattern recognition system based on support vector machinesAlexander Decker
 
Comparative study of artificial neural network based classification for liver...
Comparative study of artificial neural network based classification for liver...Comparative study of artificial neural network based classification for liver...
Comparative study of artificial neural network based classification for liver...Alexander Decker
 
A novel salp swarm clustering algorithm for prediction of the heart diseases
A novel salp swarm clustering algorithm for prediction of the heart diseasesA novel salp swarm clustering algorithm for prediction of the heart diseases
A novel salp swarm clustering algorithm for prediction of the heart diseasesnooriasukmaningtyas
 
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNING
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNINGDETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNING
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNINGIRJET Journal
 

Similar to Prognosticating Autism Spectrum Disorder Using Artificial Neural Network: Levenberg-Marquardt Algorithm (20)

MULTI-PARAMETER BASED PERFORMANCE EVALUATION OF CLASSIFICATION ALGORITHMS
MULTI-PARAMETER BASED PERFORMANCE EVALUATION OF CLASSIFICATION ALGORITHMSMULTI-PARAMETER BASED PERFORMANCE EVALUATION OF CLASSIFICATION ALGORITHMS
MULTI-PARAMETER BASED PERFORMANCE EVALUATION OF CLASSIFICATION ALGORITHMS
 
An Efficient PSO Based Ensemble Classification Model on High Dimensional Data...
An Efficient PSO Based Ensemble Classification Model on High Dimensional Data...An Efficient PSO Based Ensemble Classification Model on High Dimensional Data...
An Efficient PSO Based Ensemble Classification Model on High Dimensional Data...
 
IRJET- Comparative Study of Machine Learning Models for Alzheimer’s Detec...
IRJET-  	  Comparative Study of Machine Learning Models for Alzheimer’s Detec...IRJET-  	  Comparative Study of Machine Learning Models for Alzheimer’s Detec...
IRJET- Comparative Study of Machine Learning Models for Alzheimer’s Detec...
 
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
 
IRJET - Alzheimer’s Detection Model Using Machine Learning
IRJET - Alzheimer’s Detection Model Using Machine LearningIRJET - Alzheimer’s Detection Model Using Machine Learning
IRJET - Alzheimer’s Detection Model Using Machine Learning
 
HEALTH PREDICTION ANALYSIS USING DATA MINING
HEALTH PREDICTION ANALYSIS USING DATA  MININGHEALTH PREDICTION ANALYSIS USING DATA  MINING
HEALTH PREDICTION ANALYSIS USING DATA MINING
 
Prediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep LearningPrediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep Learning
 
IRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of Diabetes
 
An Artificial Neural Network Based Medical Diagnosis of Mental Health Diseases
An Artificial Neural Network Based Medical Diagnosis of Mental Health DiseasesAn Artificial Neural Network Based Medical Diagnosis of Mental Health Diseases
An Artificial Neural Network Based Medical Diagnosis of Mental Health Diseases
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep Learning
 
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
 
Risk Of Heart Disease Prediction Using Machine Learning
Risk Of Heart Disease Prediction Using Machine LearningRisk Of Heart Disease Prediction Using Machine Learning
Risk Of Heart Disease Prediction Using Machine Learning
 
An Introduction To Artificial Intelligence And Its Applications In Biomedical...
An Introduction To Artificial Intelligence And Its Applications In Biomedical...An Introduction To Artificial Intelligence And Its Applications In Biomedical...
An Introduction To Artificial Intelligence And Its Applications In Biomedical...
 
Classification of physiological diseases using eeg signals and machine learni...
Classification of physiological diseases using eeg signals and machine learni...Classification of physiological diseases using eeg signals and machine learni...
Classification of physiological diseases using eeg signals and machine learni...
 
Analyzing the behavior of different classification algorithms in diabetes pre...
Analyzing the behavior of different classification algorithms in diabetes pre...Analyzing the behavior of different classification algorithms in diabetes pre...
Analyzing the behavior of different classification algorithms in diabetes pre...
 
IRJET- Disease Prediction using Machine Learning
IRJET-  Disease Prediction using Machine LearningIRJET-  Disease Prediction using Machine Learning
IRJET- Disease Prediction using Machine Learning
 
Pattern recognition system based on support vector machines
Pattern recognition system based on support vector machinesPattern recognition system based on support vector machines
Pattern recognition system based on support vector machines
 
Comparative study of artificial neural network based classification for liver...
Comparative study of artificial neural network based classification for liver...Comparative study of artificial neural network based classification for liver...
Comparative study of artificial neural network based classification for liver...
 
A novel salp swarm clustering algorithm for prediction of the heart diseases
A novel salp swarm clustering algorithm for prediction of the heart diseasesA novel salp swarm clustering algorithm for prediction of the heart diseases
A novel salp swarm clustering algorithm for prediction of the heart diseases
 
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNING
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNINGDETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNING
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNING
 

Recently uploaded

VIP Call Girls Hyderabad Megha 9907093804 Independent Escort Service Hyderabad
VIP Call Girls Hyderabad Megha 9907093804 Independent Escort Service HyderabadVIP Call Girls Hyderabad Megha 9907093804 Independent Escort Service Hyderabad
VIP Call Girls Hyderabad Megha 9907093804 Independent Escort Service Hyderabaddelhimodelshub1
 
Call Girl Hyderabad Madhuri 9907093804 Independent Escort Service Hyderabad
Call Girl Hyderabad Madhuri 9907093804 Independent Escort Service HyderabadCall Girl Hyderabad Madhuri 9907093804 Independent Escort Service Hyderabad
Call Girl Hyderabad Madhuri 9907093804 Independent Escort Service Hyderabaddelhimodelshub1
 
Call Girls in Mohali Surbhi ❤️🍑 9907093804 👄🫦 Independent Escort Service Mohali
Call Girls in Mohali Surbhi ❤️🍑 9907093804 👄🫦 Independent Escort Service MohaliCall Girls in Mohali Surbhi ❤️🍑 9907093804 👄🫦 Independent Escort Service Mohali
Call Girls in Mohali Surbhi ❤️🍑 9907093804 👄🫦 Independent Escort Service MohaliHigh Profile Call Girls Chandigarh Aarushi
 
VIP Call Girl Sector 25 Gurgaon Just Call Me 9899900591
VIP Call Girl Sector 25 Gurgaon Just Call Me 9899900591VIP Call Girl Sector 25 Gurgaon Just Call Me 9899900591
VIP Call Girl Sector 25 Gurgaon Just Call Me 9899900591adityaroy0215
 
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service GurgaonCall Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service GurgaonCall Girls Service Gurgaon
 
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...Russian Call Girls Amritsar
 
Russian Call Girls in Hyderabad Ishita 9907093804 Independent Escort Service ...
Russian Call Girls in Hyderabad Ishita 9907093804 Independent Escort Service ...Russian Call Girls in Hyderabad Ishita 9907093804 Independent Escort Service ...
Russian Call Girls in Hyderabad Ishita 9907093804 Independent Escort Service ...delhimodelshub1
 
Call Girls Kukatpally 7001305949 all area service COD available Any Time
Call Girls Kukatpally 7001305949 all area service COD available Any TimeCall Girls Kukatpally 7001305949 all area service COD available Any Time
Call Girls Kukatpally 7001305949 all area service COD available Any Timedelhimodelshub1
 
Call Girl Raipur 9873940964 Book Hot And Sexy Girls
Call Girl Raipur 9873940964 Book Hot And Sexy GirlsCall Girl Raipur 9873940964 Book Hot And Sexy Girls
Call Girl Raipur 9873940964 Book Hot And Sexy Girlsddev2574
 
Leading transformational change: inner and outer skills
Leading transformational change: inner and outer skillsLeading transformational change: inner and outer skills
Leading transformational change: inner and outer skillsHelenBevan4
 
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...delhimodelshub1
 
Gurgaon iffco chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
Gurgaon iffco chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...Gurgaon iffco chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
Gurgaon iffco chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...soniya singh
 
Call Girls Service Chandigarh Gori WhatsApp ❤9115573837 VIP Call Girls Chandi...
Call Girls Service Chandigarh Gori WhatsApp ❤9115573837 VIP Call Girls Chandi...Call Girls Service Chandigarh Gori WhatsApp ❤9115573837 VIP Call Girls Chandi...
Call Girls Service Chandigarh Gori WhatsApp ❤9115573837 VIP Call Girls Chandi...Niamh verma
 
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...Vip call girls In Chandigarh
 
VIP Call Girl Sector 32 Noida Just Book Me 9711199171
VIP Call Girl Sector 32 Noida Just Book Me 9711199171VIP Call Girl Sector 32 Noida Just Book Me 9711199171
VIP Call Girl Sector 32 Noida Just Book Me 9711199171Call Girls Service Gurgaon
 
Call Girl Chandigarh Mallika ❤️🍑 9907093804 👄🫦 Independent Escort Service Cha...
Call Girl Chandigarh Mallika ❤️🍑 9907093804 👄🫦 Independent Escort Service Cha...Call Girl Chandigarh Mallika ❤️🍑 9907093804 👄🫦 Independent Escort Service Cha...
Call Girl Chandigarh Mallika ❤️🍑 9907093804 👄🫦 Independent Escort Service Cha...High Profile Call Girls Chandigarh Aarushi
 
Call Girls LB Nagar 7001305949 all area service COD available Any Time
Call Girls LB Nagar 7001305949 all area service COD available Any TimeCall Girls LB Nagar 7001305949 all area service COD available Any Time
Call Girls LB Nagar 7001305949 all area service COD available Any Timedelhimodelshub1
 

Recently uploaded (20)

VIP Call Girls Hyderabad Megha 9907093804 Independent Escort Service Hyderabad
VIP Call Girls Hyderabad Megha 9907093804 Independent Escort Service HyderabadVIP Call Girls Hyderabad Megha 9907093804 Independent Escort Service Hyderabad
VIP Call Girls Hyderabad Megha 9907093804 Independent Escort Service Hyderabad
 
Call Girl Dehradun Aashi 🔝 7001305949 🔝 💃 Independent Escort Service Dehradun
Call Girl Dehradun Aashi 🔝 7001305949 🔝 💃 Independent Escort Service DehradunCall Girl Dehradun Aashi 🔝 7001305949 🔝 💃 Independent Escort Service Dehradun
Call Girl Dehradun Aashi 🔝 7001305949 🔝 💃 Independent Escort Service Dehradun
 
Call Girl Hyderabad Madhuri 9907093804 Independent Escort Service Hyderabad
Call Girl Hyderabad Madhuri 9907093804 Independent Escort Service HyderabadCall Girl Hyderabad Madhuri 9907093804 Independent Escort Service Hyderabad
Call Girl Hyderabad Madhuri 9907093804 Independent Escort Service Hyderabad
 
Call Girls in Mohali Surbhi ❤️🍑 9907093804 👄🫦 Independent Escort Service Mohali
Call Girls in Mohali Surbhi ❤️🍑 9907093804 👄🫦 Independent Escort Service MohaliCall Girls in Mohali Surbhi ❤️🍑 9907093804 👄🫦 Independent Escort Service Mohali
Call Girls in Mohali Surbhi ❤️🍑 9907093804 👄🫦 Independent Escort Service Mohali
 
VIP Call Girl Sector 25 Gurgaon Just Call Me 9899900591
VIP Call Girl Sector 25 Gurgaon Just Call Me 9899900591VIP Call Girl Sector 25 Gurgaon Just Call Me 9899900591
VIP Call Girl Sector 25 Gurgaon Just Call Me 9899900591
 
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service GurgaonCall Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
Call Girl Gurgaon Saloni 9711199012 Independent Escort Service Gurgaon
 
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
 
Russian Call Girls in Hyderabad Ishita 9907093804 Independent Escort Service ...
Russian Call Girls in Hyderabad Ishita 9907093804 Independent Escort Service ...Russian Call Girls in Hyderabad Ishita 9907093804 Independent Escort Service ...
Russian Call Girls in Hyderabad Ishita 9907093804 Independent Escort Service ...
 
Call Girls Kukatpally 7001305949 all area service COD available Any Time
Call Girls Kukatpally 7001305949 all area service COD available Any TimeCall Girls Kukatpally 7001305949 all area service COD available Any Time
Call Girls Kukatpally 7001305949 all area service COD available Any Time
 
Call Girl Raipur 9873940964 Book Hot And Sexy Girls
Call Girl Raipur 9873940964 Book Hot And Sexy GirlsCall Girl Raipur 9873940964 Book Hot And Sexy Girls
Call Girl Raipur 9873940964 Book Hot And Sexy Girls
 
Leading transformational change: inner and outer skills
Leading transformational change: inner and outer skillsLeading transformational change: inner and outer skills
Leading transformational change: inner and outer skills
 
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
Russian Call Girls Hyderabad Indira 9907093804 Independent Escort Service Hyd...
 
Gurgaon iffco chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
Gurgaon iffco chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...Gurgaon iffco chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
Gurgaon iffco chowk 🔝 Call Girls Service 🔝 ( 8264348440 ) unlimited hard sex ...
 
Russian Call Girls in Dehradun Komal 🔝 7001305949 🔝 📍 Independent Escort Serv...
Russian Call Girls in Dehradun Komal 🔝 7001305949 🔝 📍 Independent Escort Serv...Russian Call Girls in Dehradun Komal 🔝 7001305949 🔝 📍 Independent Escort Serv...
Russian Call Girls in Dehradun Komal 🔝 7001305949 🔝 📍 Independent Escort Serv...
 
College Call Girls Dehradun Kavya 🔝 7001305949 🔝 📍 Independent Escort Service...
College Call Girls Dehradun Kavya 🔝 7001305949 🔝 📍 Independent Escort Service...College Call Girls Dehradun Kavya 🔝 7001305949 🔝 📍 Independent Escort Service...
College Call Girls Dehradun Kavya 🔝 7001305949 🔝 📍 Independent Escort Service...
 
Call Girls Service Chandigarh Gori WhatsApp ❤9115573837 VIP Call Girls Chandi...
Call Girls Service Chandigarh Gori WhatsApp ❤9115573837 VIP Call Girls Chandi...Call Girls Service Chandigarh Gori WhatsApp ❤9115573837 VIP Call Girls Chandi...
Call Girls Service Chandigarh Gori WhatsApp ❤9115573837 VIP Call Girls Chandi...
 
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
 
VIP Call Girl Sector 32 Noida Just Book Me 9711199171
VIP Call Girl Sector 32 Noida Just Book Me 9711199171VIP Call Girl Sector 32 Noida Just Book Me 9711199171
VIP Call Girl Sector 32 Noida Just Book Me 9711199171
 
Call Girl Chandigarh Mallika ❤️🍑 9907093804 👄🫦 Independent Escort Service Cha...
Call Girl Chandigarh Mallika ❤️🍑 9907093804 👄🫦 Independent Escort Service Cha...Call Girl Chandigarh Mallika ❤️🍑 9907093804 👄🫦 Independent Escort Service Cha...
Call Girl Chandigarh Mallika ❤️🍑 9907093804 👄🫦 Independent Escort Service Cha...
 
Call Girls LB Nagar 7001305949 all area service COD available Any Time
Call Girls LB Nagar 7001305949 all area service COD available Any TimeCall Girls LB Nagar 7001305949 all area service COD available Any Time
Call Girls LB Nagar 7001305949 all area service COD available Any Time
 

Prognosticating Autism Spectrum Disorder Using Artificial Neural Network: Levenberg-Marquardt Algorithm

  • 1. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 1 Research Article Prognosticating Autism Spectrum Disorder Using Artificial Neural Network: Levenberg-Marquardt Algorithm Avishek Choudhury*, Christopher M Greene Binghamton University, New York, USA *Corresponding Author: Avishek Choudhury, Binghamton University, Systems Science and Industrial Engineering, Engineering Building, L2, Vestal, NY 13902, USA, Tel: +1 (806) 500-8025; E-mail: achoud13@binghamton.edu Received: 29 August 2018; Accepted: 05 September 2018; Published: 13 September 2018 Abstract Autism spectrum condition (ASC) or autism spectrum disorder (ASD) is primarily identified with the help of behavioral indications encompassing social, sensory and motor characteristics. Although categorized, recurring motor actions are measured during diagnosis, quantifiable measures that ascertain kinematic physiognomies in the movement configurations of autistic persons are not adequately studied, hindering the advances in understanding the etiology of motor mutilation. Subject aspects such as behavioral characters that influences ASD need further exploration. Presently, limited autism datasets concomitant with screening ASD are available, and a majority of them are genetic. Hence, in this study, we used a dataset related to autism screening enveloping ten behavioral and ten personal attributes that have been effective in diagnosing ASD cases from controls in behavior science. ASD diagnosis is time exhaustive and uneconomical. The burgeoning ASD cases worldwide mandate a need for the fast and economical screening tool. Our study aimed to implement an artificial neural network with the Levenberg- Marquardt algorithm to detect ASD and examine its predictive accuracy. Consecutively, develop a clinical decision support system for early ASD identification. Keywords: Neural networks; The Levenberg-Marquardt algorithm; Clinal decision support system; Autism diagnosis 1. Introduction Autism spectrum disorder (ASD) is a faction of polygenetic evolving brain disarray accompanied with behavioral and cognitive mutilation [1]. It is a lifelong neurodevelopmental illness depicted by insufficiencies in communication, interaction and constrained behavior [2]. Though ASD is identified mainly by behavioral and social
  • 2. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 2 physiognomies, autistic individuals often exhibit tainted motor ability such as reduced physical synchronization, unstable body balance and unusual posture and movement patterns [3-5]. Individuals with ASD show stereotypical recurring actions, constrained interests, a privation of instinct control, speech insufficiencies, compromised intellect and social skills compared to typically developing (TD) children [6]. There has been well-established work done in diagnosing ASD using kinematic physiognomies. Guha et al. [7] used gesticulation data to measure atypicality variance in facial expressions of children with and without ASD. Six facial reactions were securitized using information theory, statistical analysis and time- series modeling. Recently researchers have engrossed in refining and implementing data analytics as a diagnosis tool for ASD. Being an efficient computational tool machine learning has disclosed its potential for classification in the various domain [8-9]. Therefore, some literature has employed machine learning methods to identify neural [10] [11] or behavioral markers [12-13] responsible for discriminating individuals with and without ASD. Stahl et al. [10] studied the influence of eye gaze to classify infant groups with a high or low risk of getting ASD. Computational methods such as discriminant functions analysis with an accuracy of 0.61, support vector machine with an accuracy of 0.64, and linear discrimination analysis with an accuracy of 0.56 were implemented. Bone in 2016 [14] retrieved data from The Autism Diagnostic Interview-Revised and The Social Responsiveness Scale and applied SVM machine learning classifier to a significant group individual with and without ASD and obtained promising results and demonstrated that machine learning could be used as a useful tool for ASD diagnosis. Grossi et al. employed artificial neural networks (ANNs) to develop a predictive model using a dataset comprising of 27 potential pregnancy risk elements in autism development [15]. The artificial neural network produced a predictive accuracy of 80%. Their study supported and encouraged the use of ANNs as an excellent diagnostic screening tool for ASD. The highest classification accuracy obtained so far is 96.7% using SVM. With the aim of developing a clinical decision support system, we implement artificial neural networks with the Levenberg-Marquardt algorithm on data set that contains ten behavioral and ten personal attributes of adults with and without ASD. 2. Methodology This study does not involve any participation of human subjects. We extracted the data from the UCI library. The data and data description is provided with this paper. It consists of 20 predictors (ten behavioral and ten personal attributes), one response variable ad 704 instances. The methodology designed for this study can be divided into (a) data preprocessing, (b) designing the model, and (c) fitting and evaluating the model. 2.1 Data preprocessing Data preprocessing is one of the most critical steps in all machine learning application. In this study, we did not use missing data points and partitioned the dataset into training, testing and selection instances. The following pie chart (figure 1a) details the uses of all the instances in the dataset. The total number of instances is 704, that contains 424
  • 3. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 3 (60.2%) training instances, 140 (19.9%) of selection instances, and 140 (19.9%) of testing instances. The following pie chart includes all the missing values. Figure 1: (a) Shows the partitioned data; (b) Shows the number of instances belonging to each class in the dataset. The pie chart above (figure 1b) displays the partitioning of the dataset (excluding all missing values). The number of instances with negative Class/ASD (blue) is 222, and the number of instances with positive Class/ASD (purple) is 90. This figure also shows that the data is unbalanced. However, we did not implement any data balancing method. 2.2 Designing the model In this step we calculated the suitable training algorithm for our dataset and determined the complexity of the model, that is the optimal number of neurons in the network. 2.2.1 The levenberg–marquardt algorithm: Kenneth Levenberg and Donald Marquardt developed The Levenberg–Marquardt algorithm (LM) [16-17] that generates a mathematical solution to a problem of minimizing a non- linear function. We used this algorithm because in the domain of artificial neural-networks it is fast and has stable convergence. The LM algorithm approaches the second-order training speed without calculating the Hessian matrix. It holds good when the loss function has the arrangement of a sum of squares. LM is an optimization algorithm that outperforms simple gradient descent and conjugate gradient methods in a diverse assortment of problems. LM algorithm follows equation 1 as shown below. (1) where J is the Jacobian matrix, T stands for transpose, k is the index of iteration, e is the training error and w is the weight vector. The following Table 1 shows a brief description of the parameters used for this algorithm. a b
  • 4. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 4 Parameters Description Value Damping parameter factor Damping parameter increase/decrease factor. 10 Minimum parameter increment norm Norm of the parameter increment vector at which training stops. 0.001 Minimum loss increase Minimum loss improvement between two successive iterations 1e-12 Performance goal Goal value for the loss 1e-12 Gradient norm goal Goal value for the norm of the objective function gradient 0.001 Maximum selection loss increase Maximum number of iterations at which the selection loss increases 100 Maximum iterations number Maximum number of iterations to perform the training. 1000 Table 1: The Levenberg-Marquardt algorithm description. 2.2.2 Order selection algorithm: For better performance of the model, we implemented an incremental order selection algorithm to achieve a model with the best complexity to produce an adequate fit of the data. Incremental selection order is the naivest order selection algorithm. This method begins with a least order and upsurges the size of the hidden layer of neurons until a desired order is attained. The order selection algorithm determines the optimal number of neurons in the network. Incremental order selection enhances the ability of the model to predict the result with a new data. Two recurrent problems that hinder the design of a neural network are underfitting and overfitting. The best simplification is attained by designing a model whose complexity is appropriate to produce the best fit model. Underfitting can occur if the model is too simple, whereas overfitting is defined as the effect of a selection error burgeoning due to an over-complex model. The next figure 2 illustrates the training and selection errors as a function of the order of a neural network. Figure 1: Effect of model complexity on Overfitting and Underfitting. 2.3 Fitting and evaluating the model After designing the appropriate model, we deployed it on our preprocessed dataset and computed the following performance measures: (a) Accuracy, (b) Sum squared error, (c) mean squared error, (d) root mean squared error, (e)
  • 5. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 5 normalized squared error, (f) cross-entropy error, (g) Minkowski error, and (h) weighted squared error. Additionally, the area under the ROC curve, miss-classification, cumulative gain, lift chart and model loss index were observed for better understanding and evaluation of the model’s performance. 3. Results Implementing the Levenberg–Marquardt algorithm and incremental order selection enabled the proposed model to produce a classification accuracy of 98.38%. The following table 2 shows the training results obtained by the Levenberg-Marquardt algorithm. They include final states from the neural network, the loss function, and the training algorithm. The number of iterations needed to converge is found to be zero, which infers that the training algorithm did not modify the state of the neural network. Parameters Value Final parameters norm 14.5 Final loss 9.89e-05 Final selection loss 0.00122 Final gradient norm 0.00036 Iteration number 0 Elapsed time 0 Stopping criterion Gradient norm goal Table 2: The result obtained from the Levenberg-Marquardt algorithm. The optimal number of neurons was calculated to be 1. The figure 3 displays the loss history for the different subsets during the incremental order selection process. The blue line represents the training loss, and the red line symbolizes the selection loss. Figure 3: Loss history for different subsets obtained during incremental order selection algorithm.
  • 6. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 6 Parameters Value Optimal order 1 Optimum training loss 8.2344e-05 Optimum selection loss 0.00313 Iteration number 20 Table 3: Final output obtained from incremental order selection algorithm. 3.1 Testing errors This task measures all the losses of the model. It considers every used instance and evaluates the model for each use. The table 4 below shows all the training, testing and selection errors of the data. Errors Training Selection Testing Sum squared error 0.0032 0.0796 0.3243 Mean squared error 1.7360e- 05 0.0012 0.0052 Root mean squared error 0.0041 0.0358 0.0723 Normalized squared error 7.0236e-05 0.0052 0.0210 Cross- entropy error 0.0036 0.0134 0.0188 Minkowski error 0.0459 0.2236 0.4722 Weighted squared error 9.8919e- 05 0.0122 0.0241 Table 4: All performance measures (Testing errors). 3.2 Confusion table This section shows the correct and miss classifications made by the model on the testing dataset. The table 5 below is termed as a confusion matrix. The rows in the table denotes the target variables, whereas the columns represent the output classes belonging to the testing dataset. The diagonal cells depict the correctly classified, and the off- diagonal cells indicates the misclassified instances. The decision threshold is considered to be 0.5. The table shows 61 correctly classified instances and one misclassified instance. Instances Predicted positive Predicted negative Actual positive 33 0 Actual negative 1 28 Table 5: Confusion table showing positive and negative classification.
  • 7. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 7 Classification accuracy was then calculated from the confusion matrix using the following equation 2: [(Correct prediction) / (Total predicted)] * 100 (2) The following part of this section will evaluate the model’s performance based on ROC, Cumulative gain, Lift plot and Loss index. 3.3 Receiver Operating Characteristic A good way to analyze the loss is by plotting a ROC (Receiver Operating Characteristic) curve which is a graphical illustration of how good the classifier distinguishes between the two dissimilar classes. This capacity for discrimination is measured by calculating the area under the curve. ROC was found to be 1 with an optimal threshold of 0.882. The figure 4 below shows the ROC curve obtained and the blue shaded region is the AUC. Figure 4: ROC plot. 3.4 Cumulative Gain The cumulative gain analysis is a pictorial representation that illustrates the benefit of implementing a predictive model as opposed to randomness. The baseline represents the results that would be obtained without using a model. The positive cumulative gain which shows on the y-axis the percentage of positive instances found against the percentage of the population, which is represented on the x-axis. Similarly, the negative cumulative gain represents the fraction of the negative instances found against the population. The following figure 5 shows the results of the analysis in this case. The blue line represents the positive cumulative gain, the red line shows the negative cumulative gain, and the grey line signifies the random cumulative gain. Greater separation between the positive and negatives cumulative gain charts, indicates better performance of the classifier.
  • 8. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 8 Figure 5: Cumulative plot. The maximum gain score of a cumulative gain is obtained by the computing the maximum difference between the positive and the negative cumulative gain, i.e., it is the point where the percentage of positive instances found is maximized, and the percentage of negative instances found is minimized. If we have a perfect model, this score takes the value 1. The next table 6 shows the score in this case and the instances ratio for which it is reached. Parameters Value Instance ratio 0.55 Maximum gain score 0.97 Table 6: Maximum gain score. 3.5 Lift plot A lift plot provides a visual aid for evaluating a predictive model loss. It consists of a lift curve and a baseline. Lift curve represents the ratio between the positive events using a model and without using it. Baseline represents randomness, i.e., not using a model. The figure 6 below shows the lift plot obtained for this study. The x-axis displays the percentage of instances studied while the y-axis displays the ratio between the results predicted by the model and the results without the model. Figure 6: Lift plot.
  • 9. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 9 3.6 Loss index The loss index plays an essential role in the use of a neural network. It delineates the errand that the neural network is designed to perform and provides a gauge of the quality of the desired learning. The loss index varies with different applications. We implemented the weighted squared error as the error method which is especially useful when the data set has unbalanced targets. That is, there are too few positives when compared to the negatives, or vice versa. The following table 7 shows the exponent in error between the outputs from the neural network and the targets in the dataset. Variable Value Positive weight 2.72 Negative weight 1 Table 7: Exponent in error between the output from the ANN and the target variable. 4. Conclusion To our knowledge, this is the first attempt to examine identification of autism using the Levenberg-Marquardt algorithm and incremental order selection in the field of artificial neural networks. Moreover, our model produced the highest classification accuracy of 98.38%. Through this study, we highlighted the importance of the training algorithm, order selection algorithm and selecting the required loss index to deal with unbalanced data. Based on the observations and evaluation of the proposed model, it can be inferred that Neural network with the Levenberg- Marquardt algorithm and incremental order selection is an appropriate tool for diagnosing ASD and can be deployed as a clinical decision support system. References 1. Rapin, Tuchman R. Autism: definition, neurobiology, screening, diagnosis. Pediatr Clin North Am. Pediatr Clin North Am (2008): 1129-1146. 2. Baihua Li JMEG. American Psychiatric Association, Diagnostic and statistical manual of mental disorders. PLOS One, American Psychiatric Publishing 12 (2017): 1-19. 3. Gowen E, Hamilton A. Motor abilities in autism: a review using a computational context. Journal of autism and developmental disorders 43 (2013): 323-344. 4. Fournier K, Hass C, Naik S, et al. Motor coordination in autism spectrum disor- ders: A synthesis and meta- analysis. Journal of autism and developmental disorders 40 (2010): 1227-1240. 5. Bhat, Landa R, Galloway J. Current perspectives on motor functioning in infants, children, and adults with autism spectrum disorders. Physical Therapy 91 (2011): 1116-1129. 6. Kang S, Reilly MO, Rojeski L, et al. Effects of tangible and social reinforcers on skill acquisition, stereotyped behavior, and task engagement in three children with autism spectrum disorders. Res Dev Disability 34 (2013): 739-744.
  • 10. J Bioinform Syst Biol 2018; 1 (1): 001-011 DOI: 10.26502/fjbsb001 Journal of Bioinformatics and Systems Biology - Vol. 1 No. 1 - Sep 2018. 10 7. Guha T, Yang Z, Ramakrishna A, et al. On quantifying facial expres- sion-related atypicality of children with autism spectrum disorder. IEEE Int Conf Acoustics, Seech and Signal Processing (ICASSP) 803-807. 8. Mitchell T. Machine learning. Boston: McGraw-Hill 1997. 9. Kotsiantis S, Zaharakis I, Pintelas P. Supervised machine learning: A review of classification techniques. 2007. 10. Stahl D, Pickles A, Elsabbagh M, et al. Novel machine learning methods for ERP analysis: A validation from research on infants at risk for autism. Developmental neuropsychology 37 (2012): 274-298. 11. Chanel G, Pichon S, Conty L, et al. Classification of autistic individuals and controls using cross-task characterization of fMRI activity. NeuroImage: Clinical 10 (2016): 78-88. 12. Kosmicki J, Sochat V, Duda M et al. Searching for a minimal set of behaviors for autism detection through feature selection-based machine learning. Translational psychiatry 5 (2015): 514. 13. Wall D, Kosmicki J, Deluca T, et al. Use of machine learning to shorten observation- based screening and diagnosis of autism. Translational psychiatry 2 (2012): 100. 14. Bone D, Bishop S, Black M, et al. Use of machine learning to improve autism screening and diagnostic instruments: effectiveness, efficiency, and multi-instrument fusion. Journal of Child Psychology and Psychiatry 57 (2016): 927-937. 15. Grossi E, Veggo F, Narzisi A, et al. Pregnancy risk factors in autism: a pilot study with artificial neural networks. Pediatric research 79 (2016): 339-347. 16. Levenberg K. A method for the solution of certain problems in least squares. Quarterly of Applied Mathematics. 5 (1944): 164-168. 17. Marquardt D. An algorithm for least-squares estimation of nonlinear parameters. SIAM Journal on Applied Mathematics. 11 (1963): 431-441. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC-BY) license 4.0 Citation: Avishek Choudhury, Christopher M Greene. Prognosticating Autism Spectrum Disorder Using Artificial Neural Network: Levenberg-Marquardt Algorithm. Journal of Bioinformatics and Systems Biology 1 (2018): 001-010.