SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2880
Predicting Autism Spectrum Disorder using Supervised Learning
Algorithms
P. Kavya Sree1, A. Phani Sai Kumar2, R.Nandini3, Tanay Lodh4,N Sai Susmitha Naidu5
1234 UG student, Department Of Computer Science And Engineering, GITAM School of Technology,
Visakhapatnam campus, India.
5Assistant Professor, Department Of Computer Science And Engineering, GITAM School of Technology,
Visakhapatnam campus, Andhra Pradesh, India.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Autism Spectrum Disorder (ASD) is one of the
most rapidly rising diagnoses in the field of developmental
disabilities. Behavioral characteristics, including social,
sensory, and motor elements, are used to diagnose autism
spectrum disorder. Families and individuals concerned about
ASD traits in themselves or their relatives should consult their
family physician. So, using ten enquiries, we looked at the
behavioural pattern to see if the person had been diagnosed
with autism or not. We have a total of 704 records, of which
189 were found to be autistic, accounting for around 26.85%
of the total. From the total 20% of the records were utilised to
train the algorithm, with the rest being used to test it. The
algorithms used were random forests (RF), AdaBoost (Ada),
and the Support Vector Machine (SVM) algorithm. These
algorithms were used to find the accuracy of the dataset.
Key Words: Autism Spectrum Disorder, ASD, Machine
Learning, Data Analysis, Flask Application.
1. INTRODUCTION
Autism spectrum disorder (ASD) is a lifelong
neurodevelopmental disorder marked by social
communication and interaction difficulties. ASD is a rapidly
growing problem in today's world, affecting people of all
ages. Early identification of this neurological condition can
help keep the subject's mental and physical health in good
shape. Detection of ASD is challenging due to the fact that
there are various different mental diseases with few
symptoms that are quite similar to those with ASD
symptoms, making this a tough endeavour.
Autism is on the rise all across the world, and it’s spreading
at an enormous speed. Some people with this disorder can
live on their own, while others may require permanent care
and help. Autism diagnosis takes too long and is very
expensive. The symptoms of thisconditioncanbeginasearly
as three years old and can last a lifetime. Although it is
impossible to completely heal a patient suffering from this
condition, the consequences can be mitigated for a period of
time if the signs are discovered early.
In order to minimize the symptoms of ASD and improve the
quality of life of those affected,earlydetectionandtreatment
are essential. However, no medical test that can accurately
diagnose autism. The goal of this project is to develop a
machine learning model that can predict autism. The model
can be used to predict autism traits in any age group.
The remaining part of the paper is as follows. The second
section of the paper goes over previous researchinthisfield.
The methodology is presented in Section III. The proposed
system's detailed implementation is discussed in Section IV,
and the feature built is analyzed in Section V. The proposed
algorithm was briefly discussed in Section VI and how itwas
integrated into a flask application. Finally, Section VII
summarises the paper's research contributions, research
limitations, and future plans to develop on this research.
2. LITERATURE REVIEW
The course of early screening isn't extremely reliableinlight
of the fact that it depends on a questionnaire that guardians
reply about their ward'swayofbehaving.Furthermore,these
surveys regularly produce misleading false positives. Truth
be told, of the kids whose guardians report early indications
of ASD on the poll, just 50% have that diagnosis affirmed by
an authorised ASDclinician. Also, in lightofthefactthatthere
are scarcely any authorised ASD clinicians qualified to circle
back to the many guardianswho reportthroughASDthrough
the poll, the wait time that child will get a diagnosis could be
well after the child's third birthday postponing treatment
past the critical window of timeto further developresultsfor
child's with ASD possibly.
I. M.S. Mythili, A.R. Mohammed Shanavas made use of
classification techniques in their study on ASD. The
objective of their research was to study the autism
disorder and the various levels it exists in. In this study
the subject’s behavioural and social interactions were
analysed with the use of SVM, Neural network and Fuzzy
techniques with WEKA tools.
II.Wall madeuse of AlternatingDecisionTrees(ADTree)to
reduce the timetakes to screen and detect ASD traitsina
subject in an effort to make the diagnosis procedure
significantly faster. They observed higher levels of
accuracy with a data of 891 individuals by using a
revised ADI-R method. Although the test failed to
accurately predict ASD in varying age groups since the
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2881
study was limited within the age bracket of 5 years to 17
years.
III. A searching method was proposed by A. Kosimchi,
V.Suchat, M.Duda and D.P. Wall over the set of traits in
Autism prediction. The authors used a ML approach in
this study for the evaluation of the clinical diagnosis of
ASD. This study employs 8 different ML algorithms to
perform step-by-step backward recognition on 4540
sheets.
IV. Bone used a Support Vector Machine in their study,
which included 1264 people with ASD traits and 462
people without ASD traits. In this study they obtained
89.2% percent sensitivity and 59% specificity.
From the preceding section, it is evident that deep learning-
based models have a great potential to detect ASD
in human populations. The majority
of works cited so far have relied on traditional machine
learning algorithms, which are limited in terms of
performance. Inthisstudy,multiplemachinelearningmodels
were compared to see which was the most efficient.
3. RESEARCH METHODOLOGY
In this dissertation, five phases are involved:data collection,
data pre-processing, developing the prediction model,
assessing the prediction model, and developing an
application in Flask. The following
subsections briefly describe each phase:
3.1 Data Collection:
The dataset for this study was gathered from the UCI
Repository, which is open to the public. Dataset Name-ASD
Screening Data for Adult, Attribute Type-continuous and
binary, Number of Instances-704. There are sixteen
characteristics in the dataset, which are a combination of
categorical and numerical data of whichinclude:Question 1-
10, Age, Gender, if the person bornwithjaundice,AnyFamily
member with ASD, who is completing the test,andClass.The
AQ-10 screening questions cover a variety of domains,
including attention switching, imagination, communication,
and social interaction. The questions are gradedusinga one-
point scoring system for each of the ten questions. On each
question, the user might earn 0or1pointdependingontheir
response.
Number of Data set
3.2 Data Pre-processing
Data Pre-processing is for removing outliersandnoisein the
raw data and makes it available for training the model. In
simple way, Data Pre-processing is the major step in the
project evaluation to obtain the best accuracy. Thus, raw
data is converted intosomethingusableandunderstandable.
Real-world data is frequently partial and inaccuratebecause
it contains many errors and outliers. Several methods are to
handle data, such as handling incomplete data, outlier
analysis, data reduction, and discretization. The missing
values in these datasets were solved using the imputation
method.
3.3 Developing the prediction model
Considering an 80:20 ratio, the complete dataset is
categorized into training set and testing set respectively as
per requirements. In thewakeofimplementingseveral types
of supervised learning systems such as random forests(RF),
SVM, and AdaBoost, a system to predict ASD could be put
into place.
3.4 Evaluating the prediction model
In addition to assessing accuracy, sensitivity, specificity and
precision, the proposed model was also tested using the
leave-one-out strategy on the AQ-10 dataset. As part of the
validation process, field observations were conducted at
various places using forms to collect over 189 ASDcasesand
515 cases without ASD from a special education institutefor
people with special needs.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2882
3.5 Developing a flask application
In the end, a flask application has been developed
specifically for the general public. The user answers closed-
ended questions to receive a result with regard to autism or
not.
4. DEVELOPING THE PREDICTION MODEL
Data was split into two portions, one to train on and the
other to test on: 80:20. For training, 80 % of the data is used,
and for testing, 20 % is used. Algorithms were created, and
their accuracy was tested to generate autism trait
predictions. Randomforestisusedforimplementingthe ASD
predictive system after completing several types of
supervised learning, including random forests (RF), SVM,
AdaBoost.
Initially, the SVM algorithm was used to predict an
individual's autism traits. Random Forest was implemented
for further improvement. Finally, the Random Forest
classifier was tweaked to improve results, and the best
results were obtained using the AdaBoost algorithm. The
following are the 3 algorithms used:
4.1 Prediction model based on SVM
A SVM model (Support vector) is machine learning method
used for regression and classification that study
and examines data. SVM is a supervised learning method
which divides the data into two groups based on the
hyperplane N dimension. N represents the total of different
features used to classify the data points.
4.2 Prediction model based on Random Forest
The best predictors from a subset of predictors chosen at
random are used to split each node in a random forest. This
seemingly paradoxical method outperformsotherclassifiers
such as SVM, and neural networks. Random Forest classifier
was used to improve the model's accuracy. The algorithm
can be divided into two steps in this case as well: producing
random forest and classifying test data.
4.3 Prediction model based on AdaBoost
One of several boostingalgorithmsAdaBoostisfirstboosting
algorithm in solving practices. It is used to merge several
"weak classifiers" into one "strong classifier."
Weak classifiers are introduced one by one and trained on a
weighted dataset. After creating a predeterminednumber of
weak learners (a user parameter), the process is repeated
until the training dataset cannot be improved anymore.
AdaBoost is frequently referred to as the bestout-of-the-box
classifier (with decision trees as the weak learners).
AdaBoost algorithm offers the advantageof predictingmore
accurate results andhasbetterperformancethanthecurrent
framework.
5. EVALUATING THE PREDICTION MODEL
The above bar graph represents the whether the
person is autistic or not with respect to the gender.
The results of the SVM Algorithm
The results of the Random Forest Algorithm
The precision, recall, support and f1-score of the random
forests algorithm are shown in the above figure.
The results of the AdaBoost Algorithm
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2883
Above graph represents the comparisonamong thedifferent
models used. Random forest and AdaBoost models have the
higher accuracies when compared to SVM.
6. DEVELOPING THE FLASK APPLICATION
In order to make the application user-friendly, the Random
Forest algorithm was integrated with flask into a screening
web application. Based on the AQ-10 characteristics and
some other inputs, various questions were asked for
different age groups. According to the inputted answers by
the user, the application indicated whether the person is
autistic or not.
Test case 1: Obtaining person is Non-Autistic:
Test case 2: Obtaining person is Autistic:
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2884
7. DISCUSSIONS AND CONCLUSIONS
The dataset for this study was gathered from the UCI
Repository, which is open to the public. Dataset Name-ASD
Screening Data for Adult, Attribute Type-continuous and
binary, Number of Instances-704. The dataset includes 16
parameters, the first 10 questions contain the behavioural
characteristics of the person based on communication and
social interaction. Next parameters are gender, age, person
born with jaundice, any family member containing autism
and who completed the dataset. The questions are graded
using a one-point scoring system for each of the ten
questions. On each question, the user might earn0or1point
depending on their response. The entire dataset has been
divided into two sections, one for training and the other for
testing, using an 80:20 ratio. Algorithms were created and
their accuracy was tested in order to generate autism trait
predictions. With the adoption of many machine learning
algorithms such as RF, SVM, and AdaBoost. The
implementation of the ASD predictive system was proposed
using random forest. Using the AQ10 dataset and real-world
data, the proposed predictive model was assessed for
efficiency, specificity, and precision. On the AQ-10 dataset,
the leave one out technique is used to test the performance
of the suggested model. Using the AQ10 dataset and real-
world data, the proposed predictive model was assessed for
accuracy, correctness, validity, efficiency. A total of 704
records were examined, with 189beingidentifiedasautistic,
accounting for around 26.85% of the total and 515 records
are identified as non-autistic accounting for 73.15%.
8. Limitations and Future Work
The key constraint of the project is the absence of sufficient
information to develop thepredictionsystem.Ournextsteps
will be to collect more data from a range of resources and
improve the efficiency of the proposed machine learning
classifier.
In our future endeavors, we would like to add audio as an
output to our developed flask application to make it more
reliable for users.
9. REFERENCES
[1] A Study on Autism Spectrum Disorders using
Classification Techniques. M. S. Mythili, A. R. Mohamed
Shanavas.
[2] M. Searching for a minimal set of behaviors for autism
detection through feature selection-based machine
learning. J A Kosmicki 1, V Sochat2, M Duda 3, D P Wall 3
[3] N. S. Khan, M. H. Muaz, A. Kabir, and M. N. Islam,
“Diabetes predicting mhealth applicationusingmachine
learning,” in 2017IEEEInternational WIEConferenceon
Electrical and Computer Engineering (WIECON-ECE).
IEEE, 2017, pp. 237–240.
[4] D. P. Wall, R. Dally, R. Luyster, J.-Y. Jung, and T. F.
DeLuca, “Use of artificial intelligence to shorten the
behavioral diagnosis of autism,” PloS one, vol. 7, no. 8, p.
e43855, 2012.
[5] D. Bone, S. L. Bishop, M. P. Black, M. S. Goodwin, C. Lord,
and S. S. Narayanan, “Use of machine learning to
improve autism screening and diagnostic instruments:
effectiveness, efficiency, and multi-instrument fusion,”
Journal of Child Psychology and Psychiatry, vol. 57,
2016.
[6] D. Bone, M. S. Goodwin, M. P. Black, C.-C. Lee, K.
Audhkhasi, and S. Narayanan, “Applying machine
learning to facilitate autism diagnostics: pitfalls and
promises,” Journal of autism and developmental
disorders, vol. 45, no. 5, pp. 1121–1136, 2015
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2885
[7] Use of machine learning to improve autism screening
and diagnostic instruments: effectiveness, efficiency,
and multi-instrument fusion. Daniel Bone,1 Somer
Bishop,2 Matthew P. Black,3 Matthew S.
Goodwin,4 CatherineLord,5 and ShrikanthS.Narayanan1
[8] C. Allison, B. Auyeung, and S. Baron-Cohen, “Toward
brief “red flags” for autism screening: the short autism
spectrum quotient and the short quantitative checklist
in 1,000 cases and 3,000 controls,” Journal of the
American Academy of Child & Adolescent Psychiatry,
vol. 51, 2012.
[9] F. Thabtah, “Autism spectrum disorder screening:
machine learning adaptation and dsm-5 fulfillment,” in
Proceedings of the 1st International Conference on
Medical and Health Informatics 2017. ACM, 2017.
[10] F. Hauck and N. Kliewer, “Machine learning for autism
diagnostics: Applying support vector classification.”
[11] B. van den Bekerom, “Using machine learning for
detection of autism spectrum disorder,” 2017.

More Related Content

What's hot

Wireless healthcare: the next generation
Wireless healthcare: the next generationWireless healthcare: the next generation
Wireless healthcare: the next generation
Jeffrey Funk
 
Openvino ncs2
Openvino ncs2Openvino ncs2
Openvino ncs2
艾鍗科技
 
Backpropagation for Neural Networks
Backpropagation for Neural NetworksBackpropagation for Neural Networks
Backpropagation for Neural Networks
Universitat Politècnica de Catalunya
 
Smart Data Slides: Machine Learning - Case Studies
Smart Data Slides: Machine Learning - Case StudiesSmart Data Slides: Machine Learning - Case Studies
Smart Data Slides: Machine Learning - Case Studies
DATAVERSITY
 
Image classification with Deep Neural Networks
Image classification with Deep Neural NetworksImage classification with Deep Neural Networks
Image classification with Deep Neural Networks
Yogendra Tamang
 
Loss functions (DLAI D4L2 2017 UPC Deep Learning for Artificial Intelligence)
Loss functions (DLAI D4L2 2017 UPC Deep Learning for Artificial Intelligence)Loss functions (DLAI D4L2 2017 UPC Deep Learning for Artificial Intelligence)
Loss functions (DLAI D4L2 2017 UPC Deep Learning for Artificial Intelligence)
Universitat Politècnica de Catalunya
 
[기초개념] Graph Convolutional Network (GCN)
[기초개념] Graph Convolutional Network (GCN)[기초개념] Graph Convolutional Network (GCN)
[기초개념] Graph Convolutional Network (GCN)
Donghyeon Kim
 
Face spoofing detection using texture analysis
Face spoofing detection  using texture analysisFace spoofing detection  using texture analysis
Face spoofing detection using texture analysis
SREEKUTTY SREEKUMAR
 
Teaching Machine Learning with Physical Computing - July 2023
Teaching Machine Learning with Physical Computing - July 2023Teaching Machine Learning with Physical Computing - July 2023
Teaching Machine Learning with Physical Computing - July 2023
Hal Speed
 
Deep Learning in Computer Vision
Deep Learning in Computer VisionDeep Learning in Computer Vision
Deep Learning in Computer Vision
Sungjoon Choi
 
Optimization in deep learning
Optimization in deep learningOptimization in deep learning
Optimization in deep learning
Rakshith Sathish
 
Deep learning and Healthcare
Deep learning and HealthcareDeep learning and Healthcare
Deep learning and Healthcare
Thomas da Silva Paula
 
Artificial Intelligence: The Nine Phases of the Expert System Development Lif...
Artificial Intelligence: The Nine Phases of the Expert System Development Lif...Artificial Intelligence: The Nine Phases of the Expert System Development Lif...
Artificial Intelligence: The Nine Phases of the Expert System Development Lif...
The Integral Worm
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
Syed Zaid Irshad
 
Deep Learning - CNN and RNN
Deep Learning - CNN and RNNDeep Learning - CNN and RNN
Deep Learning - CNN and RNN
Ashray Bhandare
 
Artificial Intelligence Machine Learning Deep Learning PPT PowerPoint Present...
Artificial Intelligence Machine Learning Deep Learning PPT PowerPoint Present...Artificial Intelligence Machine Learning Deep Learning PPT PowerPoint Present...
Artificial Intelligence Machine Learning Deep Learning PPT PowerPoint Present...
SlideTeam
 
Blue eyes technology semimsso
Blue eyes technology semimssoBlue eyes technology semimsso
Blue eyes technology semimsso
madhavsolanki
 
Artificial nueral network slideshare
Artificial nueral network slideshareArtificial nueral network slideshare
Artificial nueral network slideshare
Red Innovators
 
XGBoost (System Overview)
XGBoost (System Overview)XGBoost (System Overview)
XGBoost (System Overview)
Natallie Baikevich
 
Depth estimation using deep learning
Depth estimation using deep learningDepth estimation using deep learning
Depth estimation using deep learning
University of Oklahoma
 

What's hot (20)

Wireless healthcare: the next generation
Wireless healthcare: the next generationWireless healthcare: the next generation
Wireless healthcare: the next generation
 
Openvino ncs2
Openvino ncs2Openvino ncs2
Openvino ncs2
 
Backpropagation for Neural Networks
Backpropagation for Neural NetworksBackpropagation for Neural Networks
Backpropagation for Neural Networks
 
Smart Data Slides: Machine Learning - Case Studies
Smart Data Slides: Machine Learning - Case StudiesSmart Data Slides: Machine Learning - Case Studies
Smart Data Slides: Machine Learning - Case Studies
 
Image classification with Deep Neural Networks
Image classification with Deep Neural NetworksImage classification with Deep Neural Networks
Image classification with Deep Neural Networks
 
Loss functions (DLAI D4L2 2017 UPC Deep Learning for Artificial Intelligence)
Loss functions (DLAI D4L2 2017 UPC Deep Learning for Artificial Intelligence)Loss functions (DLAI D4L2 2017 UPC Deep Learning for Artificial Intelligence)
Loss functions (DLAI D4L2 2017 UPC Deep Learning for Artificial Intelligence)
 
[기초개념] Graph Convolutional Network (GCN)
[기초개념] Graph Convolutional Network (GCN)[기초개념] Graph Convolutional Network (GCN)
[기초개념] Graph Convolutional Network (GCN)
 
Face spoofing detection using texture analysis
Face spoofing detection  using texture analysisFace spoofing detection  using texture analysis
Face spoofing detection using texture analysis
 
Teaching Machine Learning with Physical Computing - July 2023
Teaching Machine Learning with Physical Computing - July 2023Teaching Machine Learning with Physical Computing - July 2023
Teaching Machine Learning with Physical Computing - July 2023
 
Deep Learning in Computer Vision
Deep Learning in Computer VisionDeep Learning in Computer Vision
Deep Learning in Computer Vision
 
Optimization in deep learning
Optimization in deep learningOptimization in deep learning
Optimization in deep learning
 
Deep learning and Healthcare
Deep learning and HealthcareDeep learning and Healthcare
Deep learning and Healthcare
 
Artificial Intelligence: The Nine Phases of the Expert System Development Lif...
Artificial Intelligence: The Nine Phases of the Expert System Development Lif...Artificial Intelligence: The Nine Phases of the Expert System Development Lif...
Artificial Intelligence: The Nine Phases of the Expert System Development Lif...
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 
Deep Learning - CNN and RNN
Deep Learning - CNN and RNNDeep Learning - CNN and RNN
Deep Learning - CNN and RNN
 
Artificial Intelligence Machine Learning Deep Learning PPT PowerPoint Present...
Artificial Intelligence Machine Learning Deep Learning PPT PowerPoint Present...Artificial Intelligence Machine Learning Deep Learning PPT PowerPoint Present...
Artificial Intelligence Machine Learning Deep Learning PPT PowerPoint Present...
 
Blue eyes technology semimsso
Blue eyes technology semimssoBlue eyes technology semimsso
Blue eyes technology semimsso
 
Artificial nueral network slideshare
Artificial nueral network slideshareArtificial nueral network slideshare
Artificial nueral network slideshare
 
XGBoost (System Overview)
XGBoost (System Overview)XGBoost (System Overview)
XGBoost (System Overview)
 
Depth estimation using deep learning
Depth estimation using deep learningDepth estimation using deep learning
Depth estimation using deep learning
 

Similar to Predicting Autism Spectrum Disorder using Supervised Learning Algorithms

IRJET - Prediction of Autistic Spectrum Disorder based on Behavioural Fea...
IRJET -  	  Prediction of Autistic Spectrum Disorder based on Behavioural Fea...IRJET -  	  Prediction of Autistic Spectrum Disorder based on Behavioural Fea...
IRJET - Prediction of Autistic Spectrum Disorder based on Behavioural Fea...
IRJET Journal
 
An Automated Eye Disease Detection System Using Convolutional Neural Network
An Automated Eye Disease Detection System Using Convolutional Neural NetworkAn Automated Eye Disease Detection System Using Convolutional Neural Network
An Automated Eye Disease Detection System Using Convolutional Neural Network
IRJET Journal
 
Autism Spectrum Disorder Using Machine Learning
Autism Spectrum Disorder Using Machine LearningAutism Spectrum Disorder Using Machine Learning
Autism Spectrum Disorder Using Machine Learning
IRJET Journal
 
EYE DISEASE IDENTIFICATION USING DEEP LEARNING
EYE DISEASE IDENTIFICATION USING DEEP LEARNINGEYE DISEASE IDENTIFICATION USING DEEP LEARNING
EYE DISEASE IDENTIFICATION USING DEEP LEARNING
IRJET Journal
 
IRJET - Deep Multiple Instance Learning for Automatic Detection of Diabetic R...
IRJET - Deep Multiple Instance Learning for Automatic Detection of Diabetic R...IRJET - Deep Multiple Instance Learning for Automatic Detection of Diabetic R...
IRJET - Deep Multiple Instance Learning for Automatic Detection of Diabetic R...
IRJET Journal
 
Mental Health Prediction Using Machine Learning
Mental Health Prediction Using Machine LearningMental Health Prediction Using Machine Learning
Mental Health Prediction Using Machine Learning
IRJET Journal
 
A MACHINE LEARNING METHODOLOGY FOR DIAGNOSING CHRONIC KIDNEY DISEASE
A MACHINE LEARNING METHODOLOGY FOR DIAGNOSING CHRONIC KIDNEY DISEASEA MACHINE LEARNING METHODOLOGY FOR DIAGNOSING CHRONIC KIDNEY DISEASE
A MACHINE LEARNING METHODOLOGY FOR DIAGNOSING CHRONIC KIDNEY DISEASE
IRJET Journal
 
A Machine Learning Model for Diabetes
A Machine Learning Model for DiabetesA Machine Learning Model for Diabetes
A Machine Learning Model for Diabetes
IRJET Journal
 
PRESENTATION-214718032-印斯麦.pptx
PRESENTATION-214718032-印斯麦.pptxPRESENTATION-214718032-印斯麦.pptx
PRESENTATION-214718032-印斯麦.pptx
ssuser17040e
 
IRJET - An Effective Stroke Prediction System using Predictive Models
IRJET -  	  An Effective Stroke Prediction System using Predictive ModelsIRJET -  	  An Effective Stroke Prediction System using Predictive Models
IRJET - An Effective Stroke Prediction System using Predictive Models
IRJET Journal
 
DIABETIC RETINOPATHY DETECTION USING MACHINE LEARNING TECHNIQUE
DIABETIC RETINOPATHY DETECTION USING MACHINE LEARNING TECHNIQUEDIABETIC RETINOPATHY DETECTION USING MACHINE LEARNING TECHNIQUE
DIABETIC RETINOPATHY DETECTION USING MACHINE LEARNING TECHNIQUE
IRJET Journal
 
AN EFFECTIVE PREDICTION OF CHRONIC KIDENY DISEASE USING DATA MINING CLASSIFIE...
AN EFFECTIVE PREDICTION OF CHRONIC KIDENY DISEASE USING DATA MINING CLASSIFIE...AN EFFECTIVE PREDICTION OF CHRONIC KIDENY DISEASE USING DATA MINING CLASSIFIE...
AN EFFECTIVE PREDICTION OF CHRONIC KIDENY DISEASE USING DATA MINING CLASSIFIE...
IRJET Journal
 
Symptom-Based Prediction of COVID-19 using Machine Learning Models with SMOTE...
Symptom-Based Prediction of COVID-19 using Machine Learning Models with SMOTE...Symptom-Based Prediction of COVID-19 using Machine Learning Models with SMOTE...
Symptom-Based Prediction of COVID-19 using Machine Learning Models with SMOTE...
IRJET Journal
 
PRESENTATION-Zain - Copy.pptx
PRESENTATION-Zain - Copy.pptxPRESENTATION-Zain - Copy.pptx
PRESENTATION-Zain - Copy.pptx
ssuser17040e
 
IRJET-Artificial Neural Network and Fuzzy Logic Approach to Diagnose Autism S...
IRJET-Artificial Neural Network and Fuzzy Logic Approach to Diagnose Autism S...IRJET-Artificial Neural Network and Fuzzy Logic Approach to Diagnose Autism S...
IRJET-Artificial Neural Network and Fuzzy Logic Approach to Diagnose Autism S...
IRJET Journal
 
RETINAL IMAGE CLASSIFICATION USING NEURAL NETWORK BASED ON A CNN METHODS
RETINAL IMAGE CLASSIFICATION USING NEURAL NETWORK BASED ON A CNN METHODSRETINAL IMAGE CLASSIFICATION USING NEURAL NETWORK BASED ON A CNN METHODS
RETINAL IMAGE CLASSIFICATION USING NEURAL NETWORK BASED ON A CNN METHODS
IRJET Journal
 
Diabetic Retinopathy Detection
Diabetic Retinopathy DetectionDiabetic Retinopathy Detection
Diabetic Retinopathy Detection
IRJET Journal
 
Predictions And Analytics In Healthcare: Advancements In Machine Learning
Predictions And Analytics In Healthcare: Advancements In Machine LearningPredictions And Analytics In Healthcare: Advancements In Machine Learning
Predictions And Analytics In Healthcare: Advancements In Machine Learning
IRJET Journal
 
IRJET - Prediction and Detection of Diabetes using Machine Learning
IRJET - Prediction and Detection of Diabetes using Machine LearningIRJET - Prediction and Detection of Diabetes using Machine Learning
IRJET - Prediction and Detection of Diabetes using Machine Learning
IRJET Journal
 
diabetic Retinopathy. Eye detection of disease
diabetic Retinopathy. Eye detection of diseasediabetic Retinopathy. Eye detection of disease
diabetic Retinopathy. Eye detection of disease
shivubhavv
 

Similar to Predicting Autism Spectrum Disorder using Supervised Learning Algorithms (20)

IRJET - Prediction of Autistic Spectrum Disorder based on Behavioural Fea...
IRJET -  	  Prediction of Autistic Spectrum Disorder based on Behavioural Fea...IRJET -  	  Prediction of Autistic Spectrum Disorder based on Behavioural Fea...
IRJET - Prediction of Autistic Spectrum Disorder based on Behavioural Fea...
 
An Automated Eye Disease Detection System Using Convolutional Neural Network
An Automated Eye Disease Detection System Using Convolutional Neural NetworkAn Automated Eye Disease Detection System Using Convolutional Neural Network
An Automated Eye Disease Detection System Using Convolutional Neural Network
 
Autism Spectrum Disorder Using Machine Learning
Autism Spectrum Disorder Using Machine LearningAutism Spectrum Disorder Using Machine Learning
Autism Spectrum Disorder Using Machine Learning
 
EYE DISEASE IDENTIFICATION USING DEEP LEARNING
EYE DISEASE IDENTIFICATION USING DEEP LEARNINGEYE DISEASE IDENTIFICATION USING DEEP LEARNING
EYE DISEASE IDENTIFICATION USING DEEP LEARNING
 
IRJET - Deep Multiple Instance Learning for Automatic Detection of Diabetic R...
IRJET - Deep Multiple Instance Learning for Automatic Detection of Diabetic R...IRJET - Deep Multiple Instance Learning for Automatic Detection of Diabetic R...
IRJET - Deep Multiple Instance Learning for Automatic Detection of Diabetic R...
 
Mental Health Prediction Using Machine Learning
Mental Health Prediction Using Machine LearningMental Health Prediction Using Machine Learning
Mental Health Prediction Using Machine Learning
 
A MACHINE LEARNING METHODOLOGY FOR DIAGNOSING CHRONIC KIDNEY DISEASE
A MACHINE LEARNING METHODOLOGY FOR DIAGNOSING CHRONIC KIDNEY DISEASEA MACHINE LEARNING METHODOLOGY FOR DIAGNOSING CHRONIC KIDNEY DISEASE
A MACHINE LEARNING METHODOLOGY FOR DIAGNOSING CHRONIC KIDNEY DISEASE
 
A Machine Learning Model for Diabetes
A Machine Learning Model for DiabetesA Machine Learning Model for Diabetes
A Machine Learning Model for Diabetes
 
PRESENTATION-214718032-印斯麦.pptx
PRESENTATION-214718032-印斯麦.pptxPRESENTATION-214718032-印斯麦.pptx
PRESENTATION-214718032-印斯麦.pptx
 
IRJET - An Effective Stroke Prediction System using Predictive Models
IRJET -  	  An Effective Stroke Prediction System using Predictive ModelsIRJET -  	  An Effective Stroke Prediction System using Predictive Models
IRJET - An Effective Stroke Prediction System using Predictive Models
 
DIABETIC RETINOPATHY DETECTION USING MACHINE LEARNING TECHNIQUE
DIABETIC RETINOPATHY DETECTION USING MACHINE LEARNING TECHNIQUEDIABETIC RETINOPATHY DETECTION USING MACHINE LEARNING TECHNIQUE
DIABETIC RETINOPATHY DETECTION USING MACHINE LEARNING TECHNIQUE
 
AN EFFECTIVE PREDICTION OF CHRONIC KIDENY DISEASE USING DATA MINING CLASSIFIE...
AN EFFECTIVE PREDICTION OF CHRONIC KIDENY DISEASE USING DATA MINING CLASSIFIE...AN EFFECTIVE PREDICTION OF CHRONIC KIDENY DISEASE USING DATA MINING CLASSIFIE...
AN EFFECTIVE PREDICTION OF CHRONIC KIDENY DISEASE USING DATA MINING CLASSIFIE...
 
Symptom-Based Prediction of COVID-19 using Machine Learning Models with SMOTE...
Symptom-Based Prediction of COVID-19 using Machine Learning Models with SMOTE...Symptom-Based Prediction of COVID-19 using Machine Learning Models with SMOTE...
Symptom-Based Prediction of COVID-19 using Machine Learning Models with SMOTE...
 
PRESENTATION-Zain - Copy.pptx
PRESENTATION-Zain - Copy.pptxPRESENTATION-Zain - Copy.pptx
PRESENTATION-Zain - Copy.pptx
 
IRJET-Artificial Neural Network and Fuzzy Logic Approach to Diagnose Autism S...
IRJET-Artificial Neural Network and Fuzzy Logic Approach to Diagnose Autism S...IRJET-Artificial Neural Network and Fuzzy Logic Approach to Diagnose Autism S...
IRJET-Artificial Neural Network and Fuzzy Logic Approach to Diagnose Autism S...
 
RETINAL IMAGE CLASSIFICATION USING NEURAL NETWORK BASED ON A CNN METHODS
RETINAL IMAGE CLASSIFICATION USING NEURAL NETWORK BASED ON A CNN METHODSRETINAL IMAGE CLASSIFICATION USING NEURAL NETWORK BASED ON A CNN METHODS
RETINAL IMAGE CLASSIFICATION USING NEURAL NETWORK BASED ON A CNN METHODS
 
Diabetic Retinopathy Detection
Diabetic Retinopathy DetectionDiabetic Retinopathy Detection
Diabetic Retinopathy Detection
 
Predictions And Analytics In Healthcare: Advancements In Machine Learning
Predictions And Analytics In Healthcare: Advancements In Machine LearningPredictions And Analytics In Healthcare: Advancements In Machine Learning
Predictions And Analytics In Healthcare: Advancements In Machine Learning
 
IRJET - Prediction and Detection of Diabetes using Machine Learning
IRJET - Prediction and Detection of Diabetes using Machine LearningIRJET - Prediction and Detection of Diabetes using Machine Learning
IRJET - Prediction and Detection of Diabetes using Machine Learning
 
diabetic Retinopathy. Eye detection of disease
diabetic Retinopathy. Eye detection of diseasediabetic Retinopathy. Eye detection of disease
diabetic Retinopathy. Eye detection of disease
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
IRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
IRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
IRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
IRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
IRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
IRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
camseq
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
Madhumitha Jayaram
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
ClaraZara1
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
gerogepatton
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
IJNSA Journal
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
Swimming pool mechanical components design.pptx
Swimming pool  mechanical components design.pptxSwimming pool  mechanical components design.pptx
Swimming pool mechanical components design.pptx
yokeleetan1
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
RadiNasr
 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
Divyam548318
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
JamalHussainArman
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
anoopmanoharan2
 

Recently uploaded (20)

Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 
Wearable antenna for antenna applications
Wearable antenna for antenna applicationsWearable antenna for antenna applications
Wearable antenna for antenna applications
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
Swimming pool mechanical components design.pptx
Swimming pool  mechanical components design.pptxSwimming pool  mechanical components design.pptx
Swimming pool mechanical components design.pptx
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
 

Predicting Autism Spectrum Disorder using Supervised Learning Algorithms

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2880 Predicting Autism Spectrum Disorder using Supervised Learning Algorithms P. Kavya Sree1, A. Phani Sai Kumar2, R.Nandini3, Tanay Lodh4,N Sai Susmitha Naidu5 1234 UG student, Department Of Computer Science And Engineering, GITAM School of Technology, Visakhapatnam campus, India. 5Assistant Professor, Department Of Computer Science And Engineering, GITAM School of Technology, Visakhapatnam campus, Andhra Pradesh, India. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Autism Spectrum Disorder (ASD) is one of the most rapidly rising diagnoses in the field of developmental disabilities. Behavioral characteristics, including social, sensory, and motor elements, are used to diagnose autism spectrum disorder. Families and individuals concerned about ASD traits in themselves or their relatives should consult their family physician. So, using ten enquiries, we looked at the behavioural pattern to see if the person had been diagnosed with autism or not. We have a total of 704 records, of which 189 were found to be autistic, accounting for around 26.85% of the total. From the total 20% of the records were utilised to train the algorithm, with the rest being used to test it. The algorithms used were random forests (RF), AdaBoost (Ada), and the Support Vector Machine (SVM) algorithm. These algorithms were used to find the accuracy of the dataset. Key Words: Autism Spectrum Disorder, ASD, Machine Learning, Data Analysis, Flask Application. 1. INTRODUCTION Autism spectrum disorder (ASD) is a lifelong neurodevelopmental disorder marked by social communication and interaction difficulties. ASD is a rapidly growing problem in today's world, affecting people of all ages. Early identification of this neurological condition can help keep the subject's mental and physical health in good shape. Detection of ASD is challenging due to the fact that there are various different mental diseases with few symptoms that are quite similar to those with ASD symptoms, making this a tough endeavour. Autism is on the rise all across the world, and it’s spreading at an enormous speed. Some people with this disorder can live on their own, while others may require permanent care and help. Autism diagnosis takes too long and is very expensive. The symptoms of thisconditioncanbeginasearly as three years old and can last a lifetime. Although it is impossible to completely heal a patient suffering from this condition, the consequences can be mitigated for a period of time if the signs are discovered early. In order to minimize the symptoms of ASD and improve the quality of life of those affected,earlydetectionandtreatment are essential. However, no medical test that can accurately diagnose autism. The goal of this project is to develop a machine learning model that can predict autism. The model can be used to predict autism traits in any age group. The remaining part of the paper is as follows. The second section of the paper goes over previous researchinthisfield. The methodology is presented in Section III. The proposed system's detailed implementation is discussed in Section IV, and the feature built is analyzed in Section V. The proposed algorithm was briefly discussed in Section VI and how itwas integrated into a flask application. Finally, Section VII summarises the paper's research contributions, research limitations, and future plans to develop on this research. 2. LITERATURE REVIEW The course of early screening isn't extremely reliableinlight of the fact that it depends on a questionnaire that guardians reply about their ward'swayofbehaving.Furthermore,these surveys regularly produce misleading false positives. Truth be told, of the kids whose guardians report early indications of ASD on the poll, just 50% have that diagnosis affirmed by an authorised ASDclinician. Also, in lightofthefactthatthere are scarcely any authorised ASD clinicians qualified to circle back to the many guardianswho reportthroughASDthrough the poll, the wait time that child will get a diagnosis could be well after the child's third birthday postponing treatment past the critical window of timeto further developresultsfor child's with ASD possibly. I. M.S. Mythili, A.R. Mohammed Shanavas made use of classification techniques in their study on ASD. The objective of their research was to study the autism disorder and the various levels it exists in. In this study the subject’s behavioural and social interactions were analysed with the use of SVM, Neural network and Fuzzy techniques with WEKA tools. II.Wall madeuse of AlternatingDecisionTrees(ADTree)to reduce the timetakes to screen and detect ASD traitsina subject in an effort to make the diagnosis procedure significantly faster. They observed higher levels of accuracy with a data of 891 individuals by using a revised ADI-R method. Although the test failed to accurately predict ASD in varying age groups since the
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2881 study was limited within the age bracket of 5 years to 17 years. III. A searching method was proposed by A. Kosimchi, V.Suchat, M.Duda and D.P. Wall over the set of traits in Autism prediction. The authors used a ML approach in this study for the evaluation of the clinical diagnosis of ASD. This study employs 8 different ML algorithms to perform step-by-step backward recognition on 4540 sheets. IV. Bone used a Support Vector Machine in their study, which included 1264 people with ASD traits and 462 people without ASD traits. In this study they obtained 89.2% percent sensitivity and 59% specificity. From the preceding section, it is evident that deep learning- based models have a great potential to detect ASD in human populations. The majority of works cited so far have relied on traditional machine learning algorithms, which are limited in terms of performance. Inthisstudy,multiplemachinelearningmodels were compared to see which was the most efficient. 3. RESEARCH METHODOLOGY In this dissertation, five phases are involved:data collection, data pre-processing, developing the prediction model, assessing the prediction model, and developing an application in Flask. The following subsections briefly describe each phase: 3.1 Data Collection: The dataset for this study was gathered from the UCI Repository, which is open to the public. Dataset Name-ASD Screening Data for Adult, Attribute Type-continuous and binary, Number of Instances-704. There are sixteen characteristics in the dataset, which are a combination of categorical and numerical data of whichinclude:Question 1- 10, Age, Gender, if the person bornwithjaundice,AnyFamily member with ASD, who is completing the test,andClass.The AQ-10 screening questions cover a variety of domains, including attention switching, imagination, communication, and social interaction. The questions are gradedusinga one- point scoring system for each of the ten questions. On each question, the user might earn 0or1pointdependingontheir response. Number of Data set 3.2 Data Pre-processing Data Pre-processing is for removing outliersandnoisein the raw data and makes it available for training the model. In simple way, Data Pre-processing is the major step in the project evaluation to obtain the best accuracy. Thus, raw data is converted intosomethingusableandunderstandable. Real-world data is frequently partial and inaccuratebecause it contains many errors and outliers. Several methods are to handle data, such as handling incomplete data, outlier analysis, data reduction, and discretization. The missing values in these datasets were solved using the imputation method. 3.3 Developing the prediction model Considering an 80:20 ratio, the complete dataset is categorized into training set and testing set respectively as per requirements. In thewakeofimplementingseveral types of supervised learning systems such as random forests(RF), SVM, and AdaBoost, a system to predict ASD could be put into place. 3.4 Evaluating the prediction model In addition to assessing accuracy, sensitivity, specificity and precision, the proposed model was also tested using the leave-one-out strategy on the AQ-10 dataset. As part of the validation process, field observations were conducted at various places using forms to collect over 189 ASDcasesand 515 cases without ASD from a special education institutefor people with special needs.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2882 3.5 Developing a flask application In the end, a flask application has been developed specifically for the general public. The user answers closed- ended questions to receive a result with regard to autism or not. 4. DEVELOPING THE PREDICTION MODEL Data was split into two portions, one to train on and the other to test on: 80:20. For training, 80 % of the data is used, and for testing, 20 % is used. Algorithms were created, and their accuracy was tested to generate autism trait predictions. Randomforestisusedforimplementingthe ASD predictive system after completing several types of supervised learning, including random forests (RF), SVM, AdaBoost. Initially, the SVM algorithm was used to predict an individual's autism traits. Random Forest was implemented for further improvement. Finally, the Random Forest classifier was tweaked to improve results, and the best results were obtained using the AdaBoost algorithm. The following are the 3 algorithms used: 4.1 Prediction model based on SVM A SVM model (Support vector) is machine learning method used for regression and classification that study and examines data. SVM is a supervised learning method which divides the data into two groups based on the hyperplane N dimension. N represents the total of different features used to classify the data points. 4.2 Prediction model based on Random Forest The best predictors from a subset of predictors chosen at random are used to split each node in a random forest. This seemingly paradoxical method outperformsotherclassifiers such as SVM, and neural networks. Random Forest classifier was used to improve the model's accuracy. The algorithm can be divided into two steps in this case as well: producing random forest and classifying test data. 4.3 Prediction model based on AdaBoost One of several boostingalgorithmsAdaBoostisfirstboosting algorithm in solving practices. It is used to merge several "weak classifiers" into one "strong classifier." Weak classifiers are introduced one by one and trained on a weighted dataset. After creating a predeterminednumber of weak learners (a user parameter), the process is repeated until the training dataset cannot be improved anymore. AdaBoost is frequently referred to as the bestout-of-the-box classifier (with decision trees as the weak learners). AdaBoost algorithm offers the advantageof predictingmore accurate results andhasbetterperformancethanthecurrent framework. 5. EVALUATING THE PREDICTION MODEL The above bar graph represents the whether the person is autistic or not with respect to the gender. The results of the SVM Algorithm The results of the Random Forest Algorithm The precision, recall, support and f1-score of the random forests algorithm are shown in the above figure. The results of the AdaBoost Algorithm
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2883 Above graph represents the comparisonamong thedifferent models used. Random forest and AdaBoost models have the higher accuracies when compared to SVM. 6. DEVELOPING THE FLASK APPLICATION In order to make the application user-friendly, the Random Forest algorithm was integrated with flask into a screening web application. Based on the AQ-10 characteristics and some other inputs, various questions were asked for different age groups. According to the inputted answers by the user, the application indicated whether the person is autistic or not. Test case 1: Obtaining person is Non-Autistic: Test case 2: Obtaining person is Autistic:
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2884 7. DISCUSSIONS AND CONCLUSIONS The dataset for this study was gathered from the UCI Repository, which is open to the public. Dataset Name-ASD Screening Data for Adult, Attribute Type-continuous and binary, Number of Instances-704. The dataset includes 16 parameters, the first 10 questions contain the behavioural characteristics of the person based on communication and social interaction. Next parameters are gender, age, person born with jaundice, any family member containing autism and who completed the dataset. The questions are graded using a one-point scoring system for each of the ten questions. On each question, the user might earn0or1point depending on their response. The entire dataset has been divided into two sections, one for training and the other for testing, using an 80:20 ratio. Algorithms were created and their accuracy was tested in order to generate autism trait predictions. With the adoption of many machine learning algorithms such as RF, SVM, and AdaBoost. The implementation of the ASD predictive system was proposed using random forest. Using the AQ10 dataset and real-world data, the proposed predictive model was assessed for efficiency, specificity, and precision. On the AQ-10 dataset, the leave one out technique is used to test the performance of the suggested model. Using the AQ10 dataset and real- world data, the proposed predictive model was assessed for accuracy, correctness, validity, efficiency. A total of 704 records were examined, with 189beingidentifiedasautistic, accounting for around 26.85% of the total and 515 records are identified as non-autistic accounting for 73.15%. 8. Limitations and Future Work The key constraint of the project is the absence of sufficient information to develop thepredictionsystem.Ournextsteps will be to collect more data from a range of resources and improve the efficiency of the proposed machine learning classifier. In our future endeavors, we would like to add audio as an output to our developed flask application to make it more reliable for users. 9. REFERENCES [1] A Study on Autism Spectrum Disorders using Classification Techniques. M. S. Mythili, A. R. Mohamed Shanavas. [2] M. Searching for a minimal set of behaviors for autism detection through feature selection-based machine learning. J A Kosmicki 1, V Sochat2, M Duda 3, D P Wall 3 [3] N. S. Khan, M. H. Muaz, A. Kabir, and M. N. Islam, “Diabetes predicting mhealth applicationusingmachine learning,” in 2017IEEEInternational WIEConferenceon Electrical and Computer Engineering (WIECON-ECE). IEEE, 2017, pp. 237–240. [4] D. P. Wall, R. Dally, R. Luyster, J.-Y. Jung, and T. F. DeLuca, “Use of artificial intelligence to shorten the behavioral diagnosis of autism,” PloS one, vol. 7, no. 8, p. e43855, 2012. [5] D. Bone, S. L. Bishop, M. P. Black, M. S. Goodwin, C. Lord, and S. S. Narayanan, “Use of machine learning to improve autism screening and diagnostic instruments: effectiveness, efficiency, and multi-instrument fusion,” Journal of Child Psychology and Psychiatry, vol. 57, 2016. [6] D. Bone, M. S. Goodwin, M. P. Black, C.-C. Lee, K. Audhkhasi, and S. Narayanan, “Applying machine learning to facilitate autism diagnostics: pitfalls and promises,” Journal of autism and developmental disorders, vol. 45, no. 5, pp. 1121–1136, 2015
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2885 [7] Use of machine learning to improve autism screening and diagnostic instruments: effectiveness, efficiency, and multi-instrument fusion. Daniel Bone,1 Somer Bishop,2 Matthew P. Black,3 Matthew S. Goodwin,4 CatherineLord,5 and ShrikanthS.Narayanan1 [8] C. Allison, B. Auyeung, and S. Baron-Cohen, “Toward brief “red flags” for autism screening: the short autism spectrum quotient and the short quantitative checklist in 1,000 cases and 3,000 controls,” Journal of the American Academy of Child & Adolescent Psychiatry, vol. 51, 2012. [9] F. Thabtah, “Autism spectrum disorder screening: machine learning adaptation and dsm-5 fulfillment,” in Proceedings of the 1st International Conference on Medical and Health Informatics 2017. ACM, 2017. [10] F. Hauck and N. Kliewer, “Machine learning for autism diagnostics: Applying support vector classification.” [11] B. van den Bekerom, “Using machine learning for detection of autism spectrum disorder,” 2017.