SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3173
Mano Vaidya: Gateway to Relaxation Via Machine Learning
Mr. Akhilesh Sathyanarayan1, Ms. Chandana B R2, Ms. Harshitha M B3, Ms. Pooja K R4, Ms.
Supriya T S5
1 Assistant Professor, Dept. of Computer Science and Engineering, Maharaja Institute of Technology
Thandavapura, Mysore, Karnataka, India
2,3,4,5 Students, Dept. of Computer Science and Engineering, Maharaja Institute of Technology Thandavapura,
Mysore, Karnataka, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Mental health is an essential issue in the world
today. Nowadays, stress has increased a lot in the post-covid
world. People are finding it hard to find ways to channel
their stress or frustration. We come across many teenagers
and youth succumbing to the mere stress faced in this
competitive world. This is for several reasons. Chief among
them is that people are not finding the right platforms and
psychological guidance to overcome stress. In this project,
we have planned to make an effort to reduce the stress level
of people by utilizing technical advances in the field of
computer science. We create an app that contains a closed
set of questionnaires from SF-36, which have some weight
associated with each question. Using clustering algorithms
like k-means, we classify the new user into one of the three
stress levels (positive, tolerable, and toxic). We modify the
dataset, add the respective clusters in each row, and use the
new data set to train classification algorithms like Naïve
Bayes and Decision tree. We get the range limits from this
and use that in our App to give results. Based on the
obtained results, we recommend a few stress-relieving
techniques and direct the user towards professional help, if
necessary.
Key Words: Mental health, Machine learning, Android
application, Human Psychology, SF-36
1 INTRODUCTION
Mental well-being is the state of mind of that individual
and gives an overview of his/her general nature. Assessing
mental wellness is critical to understanding and
suggesting treatments for patients with deviated cognitive
behavior. This project aims to determine the mentally
distressed individuals in the target population. The basic
form of getting to know about individuals in a population
is to get responses to benchmarked questions and rate
them depending on their responses. The Short Form 36
Health Survey Questionnaire (SF-36) is employed to
provide information about the state of a population's
health, aid in planning services, and assess the
effectiveness of clinical and social treatments. In addition,
the SF-36 evaluates the individual patient's health status
and monitors and compares the disease burden. Our App
includes a user login page, user profile, notifications, and
dashboard - which contains a set of questionnaires for the
users and track the result of the user according to their
answers. Activities like meditation and deep breathing
exercises, some relaxing music, and some fun games for
those who enjoy playing games are suggested based on the
user's stress level. One resource where we can find de-
stressing games is the 'Stress relief pig' website.
1.1 Overview
Our social, emotional, and mental health are all
interconnected parts of our mental health. With a large
population now, people are working from home and
staying away from their loved ones; their mental health
situation has deteriorated. It influences how we act, feel,
and think. Moreover, it determines how we handle stress,
relate to others, and make healthy choices. Mental health
issues include thinking and emotional difficulties. Minor
disruptions in various areas of life are typical, but when
they cause the person great anguish, they are regarded as
mental illnesses.
1.2 Problem Statement
About one in four persons suffer from mental health
issues, from ordinary people, such as depression and
anxiety, to rare problems, such as schizophrenia and
bipolar disorders. Experiencing a mental health problem is
often upsetting, confusing, and frightening. The fears are
often reinforced by the negative way people experience
mental health problems shown by the media. The covid
patients also experience many mental health issues such
as anxiety, stress, insecurity, suicidal thoughts, and
hopelessness. Peoples are interested in improving their
mental health, especially in stressful times. However, they
struggle with being unsure where to begin when learning
how to improve their mental health and that it is
challenging to afford expert care. We aim to aid in making
a safe space for people in need of a secure and
understanding community and provide mental health
guidance.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3174
2. SYSTEM ANALYSIS AND DESIGN
2.1 Machine learning techniques: This section
discusses various machine learning techniques used for
classification and has been used for this system. The
results of all these models have been compared to find the
best model for the system.
K-Means Algorithm: The K-Means algorithm handles
clustering issues in machine learning or data science. K-
Means Clustering is an unsupervised learning approach.
We shall discover in this article what the K-means
clustering method is, how it functions, and how to apply it
in Python to divide the unlabeled dataset into various
clusters. Here, K specifies how many pre-defined clusters
must be produced during the operation. Here, K=3, there
will be three clusters because there are three levels of
classification in our project: positive, tolerable, and toxic.
It enables us to split up the data into various groups. It
provides a practical method for automatically identifying
the groups in the unlabeled dataset without training.
Fig - 1: K-Means Clustering
In our project, we received data on mental health from all
over the world, which gives information on the mental
health status given by the users and the feedback taken by
them in the last few months. Using this knowledge, we
must categorize the data into three clusters: positive,
tolerable, and toxic. To ascertain K's value, another option
is to apply the Elbow technique. The system will randomly
assign a large number of centroids and measure the
separation between each data point and these centroids
after we have the K value. As a result, it designates the
sites from where the distance is shortest as the
appropriate centroid. Each data point will then be given its
closest centroid as a result. As a result, there are K initial
clusters. Next, it determines the new centroid position for
newly generated clusters. Compared to the one chosen at
random, the centroid's location changes. Finally, each
point's distance from the new centroid location is once
more calculated. If necessary, the data points are moved to
the new centroids, and a new calculation of the mean
position of the new centroid is made. Iteration continues if
the centroid shifts, indicating that convergence has not
occurred. However, the centroid will reflect the outcome
after it stops moving (a sign that the clustering process has
converged).
3. IMPLEMENTATION
3.1 Start building screens: First, we will create the
App's skeleton. Use your imagination to create an intuitive
app with elements that appeal to people of all
backgrounds. Make sure the workflow is simple to
understand and follow. Avoid any design choice that
requires the user to take a complicated path to achieve a
goal that can be accomplished more straightforwardly.
Fig - 2: Home Page
3.2 Questions Screen and UI refinement: Give the
Questions UI a full-screen experience. In order to keep the
user's attention only on the question displayed on the
screen, all distractions are eliminated. Then we find out
what widgets can be used to get answers from the user in
a fun way. Using the K-means algorithm, we have used a
data set and successfully clustered them into three
clusters, i.e., positive, tolerable, and toxic. After clustering,
we used a classification algorithm to classify a user into
one of these classes. We have also implemented various
algorithms for classifications and compared their
accuracy.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3175
Fig - 3: Question displayed
3.3 By machine Learning Algorithms, the App was
predicting the future results: Out of Logistic
Regression, Naive Bayes, SVM (Support Vector Machine),
and k-Means have the highest accuracy in our case. It
includes a sequence of inquiries commonly used to predict
a person's mental health. A user-friendly interface is
created where the user can answer a series of questions.
Each correct answer is worth some points. After the user
enters answers to all questions, the average points are
calculated, and his mental health is predicted. A suggestion
will be made to the user based on their responses.
Fig - 4: Result page
4. CONCLUSIONS
With the help of the Android platform's self-analyzing
treatment, the concept of inevitable improvements in
mental health for human services is seen as one possible
treatment option. A promising innovation stage through
which to make it a reality is recognized as cell phones.
Furthermore, when self-evaluation surveys are distributed
through completely designed mobile phone interfaces
instead of the best-in-class paper-based versions, the
quantity, consistency, and character of the information are
improved. A particular application is crucial to choosing
the best strategy. Focusing on differentiating
mental health difficulties like discouragement or bipolar
disorder, we present the positives and cons of the most
inspiring technological breakthroughs. Business social
insurance providers are becoming increasingly interested
in modifying research into products and bringing them to
market because of the positive results cell phones can
provide for treating mental illness. Finally, we look at the
advantages that patients, parents, doctors, and providers
of medical services protection can receive from using the
application.
ACKNOWLEDGEMENT
We want to extend our deepest gratitude to our Project
Guide, Prof. Akhilesh Sathyanarayan, who guided us and
provided us with his valuable knowledge and suggestions
on this project and helped us improve our project beyond
our limits. Secondly, we would like to thank our Project
Coordinator, Dr. Ranjit K N, who helped us finalize this
project within the limited time frame by constantly
supporting us. We would also like to express our heartfelt
thanks to our Head of Department, Prof. Navile
Nageshwara Naveen, for providing us with a platform
where we can try to work on developing projects and
demonstrate the practical applications of our academic
curriculum. Finally, we want to express our gratitude to
our Principal, Dr. Y T Krishne Gowda, who gave us a
golden opportunity to do this wonderful project on the
topic of 'Mano Vaidya: Gateway to Relaxation Via Machine
Learning’, which has helped us in doing much research
and learning the implementation.
REFERENCES
1. Agrawal, A., Rastogi, R., Chaturvedi, D. K., Sharma, S., &
Bansal, A. (2018g). Audio Visual EMG & GSR
Biofeedback Analysis for Effect of Spiritual Techniques
on Human Behavior and Psychic Challenges.
Proceedings of the 12th INDIACom.
2. Chaturvedi, D. K. (2004). Science, Religion and
Spiritual Quest. In Linkages between Social Service,
Agriculture and Theology for the Future of Mankind.
DEI Press.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3176
3. Chaturvedi, D. K. (2012). Human Rights and
Consciousness. International Seminar on Prominence
of Human Rights in the Criminal Justice System (ISPUR
2012). Proceedings of Organized Ambedkar Chair,
Dept. of Contemporary Social Studies & Law. Dr. B.R.
Ambedkar University.
4. Chaturvedi, D. K. Manish Arya (2013). Correlation
between Human Performance and Consciousness,
IEEE-International Conference on Human Computer
Interaction. Proceedings of Saveetha School of
Engineering.
5. Chaturvedi, D. K. (2013). The Correlation between
Student Performance and Consciousness Level.
Proceedings of International Conference on Advanced
Computing and Communication Technologies
(ICACCT™-2013).
6. Chaturvedi, D. K. (2013). A Study of Correlation
between Consciousness Level and Performance of
Worker, Industrial. Engineering Journal (New York),
6(8), 40–43.
7. Chaturvedi, D. K. (2014). The correlation between
Student Performance and Consciousness Level.
International Journal of Computing Science and
Communication Technologies, 6(2), 936-939.
8. Chaturvedi, D. K. (2014). Correlation between Energy
Distribution profile and Level of Consciousness.
Shiakshk Parisamvad, International Journal of
Education, 4(1), 1-9.
9. Chaturvedi, D.K. (2015). Dayalbagh Way of Life for
Better Worldliness. Quest Journals, Journal of
Research in Humanities and Social Science, 3(5), 16-
23.
10. Chaturvedi, D. K. (2019). Relationship between Chakra
Energy and Consciousness. Biomedical Journal of
Scientific and Technical Research, 15(3), 1-3.
Doi:10.26717/BJSTR.2019.15.002705
11. Chaturvedi, D. K., Kumar, J., & Bhardwaj, R. (2015,
September). Effect of meditation on Chakra Energy
and Hemodynamic parameters. International Journal
of Computers and Applications, 126(12), 52–59.
doi:10.5120/ijca2015906304
12. Chauhan, S., Rastogi, R., Chaturvedi, D. K., Arora, N., &
Trivedi, P. (2017a). Framework for Use of Machine
Intelligence on Clinical Psychology to study the effects
of Spiritual tools on Human Behavior and Psychic
Challenges. Proceedings of NSC-2017(National system
conference), DEI.
13. Glombiewski, J. A. (2013). Efficacy of EMG- and EEG-
Biofeedback in Fibromyalgia Syndrome: A Meta-
Analysis and a Systematic Review of Randomized
Controlled Trials. Vid Based Complement Alternat
Med., 2013, 962741. PMID:24082911
14. Gulati, M., Rastogi, R., Chaturvedi, D. K., Satya, S.,
Arora, N., & Singhal, P. (2018f). Statistical Resultant
Analysis of Spiritual & Psychosomatic Stress Survey
on Various Human Personality Indicators. The
International Conference proceedings of ICCI 2018.
15. Gulati, M., Rastogi, R., Chaturvedi, D. K., Sharma, P.,
Yadav, V., Chauhan, S., Gupta, M., & Singhal, P. (2019e).
Statistical Resultant Analysis of Psychosomatic Survey
on Various Human Personality Indicators: Statistical
Survey to Map Stress and Mental Health. In Handbook
of Research on Learning in the Age of Transhumanism.
Hershey, PA: IGI Global. doi:10.4018/978-1-5225-
8431-5.ch022
16. Medknow, P. (2019). Article. Annals of Indian
Psychiatry Soitey- Western Zonal Branch, 3(1).
17. Rubin, A. (1992). Biofeedback and binocular vision.
Journal of Behavioral Optometry, 3(4), 9598.
MathSciNet.
18. Sahoo, B. M., Gupta, A. D., & Shivahare, B. D. (2018).
Audio Visual EMG & GSR Biofeedback Analysis and
Spiritual Methods for Understanding Human
Behaviour and Psychosomatic Disorders. Amity
Journal of Computational Sciences, 2(1).
www.amity.edu/ajcs
19. Rastogi, R., Chaturvedi, D.K., Satya, S., Arora, N., Yadav,
V., Chauhan, S., & Sharma, P. (2018c). SF-36 scores
Analysis for EMG and GSR Therapy on Audio, Visual
and Audio-Visual Modes for Chronic TTH. Proceedings
of the ICCIDA-2018.
20. Nagai, Y., Jones, C.I., & Sen, A. (2019). Galvanic Skin
Response (GSR)/Electrodermal/Skin Conductance
Biofeedback on Epilepsy: A Systematic Review and
Meta-Analysis. Frontier Neurology. doi:10.3389/
fneur.2019.00377
21. Rastogi, R., Chaturvedi, D. K., Arora, N., Trivedi, P., &
Mishra, V. (2017b). Swarm Intelligent Optimized
Method of Development of Noble Life in the
perspective of Indian Scientific Philosophy and
Psychology’, Proceedings of NSC-2017(National
system conference), DEI
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3177
BIOGRAPHIES
Prof. Akhilesh Sathyanarayan,
MSE (USA), Assistant
Professor, Dept. of CS&E, MIT
Thandavapura.
Passionate about VLSI Design
& Machine Learning.
Always open to network &
connect.
Chandana B R, Student of
Maharaja Institute of
Technology Thandavapura,
Mysore. Pursuing Bachelor of
Engineering Degree in
Computer Science and
Engineering.
Harshitha M B, Student of
Maharaja Institute of
Technology Thandavapura,
Mysore. Pursuing Bachelor of
Engineering Degree in
Computer Science and
Engineering.
Pooja K R, Student of Maharaja
Institute of Technology
Thandavapura, Mysore.
Pursuing Bachelor of
Engineering Degree in
Computer Science and
Engineering.
Supriya T S, Student of
Maharaja Institute of
Technology Thandavapura,
Mysore. Pursuing Bachelor of
Engineering Degree in
Computer Science and
Engineering.

More Related Content

Similar to Mano Vaidya: Gateway to Relaxation Via Machine Learning

Screening of Mental Health in Adolescence.pptx
Screening of Mental Health in Adolescence.pptxScreening of Mental Health in Adolescence.pptx
Screening of Mental Health in Adolescence.pptx
NitishChoudhary23
 

Similar to Mano Vaidya: Gateway to Relaxation Via Machine Learning (20)

IRJET - Mental Fatigue Detection
IRJET -  	  Mental Fatigue DetectionIRJET -  	  Mental Fatigue Detection
IRJET - Mental Fatigue Detection
 
IRJET- Sentiment Analysis to Segregate Attributes using Machine Learning Tech...
IRJET- Sentiment Analysis to Segregate Attributes using Machine Learning Tech...IRJET- Sentiment Analysis to Segregate Attributes using Machine Learning Tech...
IRJET- Sentiment Analysis to Segregate Attributes using Machine Learning Tech...
 
IRJET- Analytic System Based on Prediction Analysis of Social Emotions from U...
IRJET- Analytic System Based on Prediction Analysis of Social Emotions from U...IRJET- Analytic System Based on Prediction Analysis of Social Emotions from U...
IRJET- Analytic System Based on Prediction Analysis of Social Emotions from U...
 
IRJET - Machine Learning for Diagnosis of Diabetes
IRJET - Machine Learning for Diagnosis of DiabetesIRJET - Machine Learning for Diagnosis of Diabetes
IRJET - Machine Learning for Diagnosis of Diabetes
 
Quantifying the efficacy of ML models at predicting mental health illnesses
Quantifying the efficacy of ML models at predicting mental health illnessesQuantifying the efficacy of ML models at predicting mental health illnesses
Quantifying the efficacy of ML models at predicting mental health illnesses
 
IRJET- Analysis of Brand Value Prediction based on Social Media Data
IRJET-  	  Analysis of Brand Value Prediction based on Social Media DataIRJET-  	  Analysis of Brand Value Prediction based on Social Media Data
IRJET- Analysis of Brand Value Prediction based on Social Media Data
 
Screening of Mental Health in Adolescence.pptx
Screening of Mental Health in Adolescence.pptxScreening of Mental Health in Adolescence.pptx
Screening of Mental Health in Adolescence.pptx
 
Combining Lexicon based and Machine Learning based Methods for Twitter Sentim...
Combining Lexicon based and Machine Learning based Methods for Twitter Sentim...Combining Lexicon based and Machine Learning based Methods for Twitter Sentim...
Combining Lexicon based and Machine Learning based Methods for Twitter Sentim...
 
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNING
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNINGDETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNING
DETECTING PSYCHOLOGICAL INSTABILITY USING MACHINE LEARNING
 
IRJET - Sentiment Analysis and Rumour Detection in Online Product Reviews
IRJET -  	  Sentiment Analysis and Rumour Detection in Online Product ReviewsIRJET -  	  Sentiment Analysis and Rumour Detection in Online Product Reviews
IRJET - Sentiment Analysis and Rumour Detection in Online Product Reviews
 
Mental Health Prediction Using Machine Learning
Mental Health Prediction Using Machine LearningMental Health Prediction Using Machine Learning
Mental Health Prediction Using Machine Learning
 
Smart Healthcare Prediction System Using Machine Learning
Smart Healthcare Prediction System Using Machine LearningSmart Healthcare Prediction System Using Machine Learning
Smart Healthcare Prediction System Using Machine Learning
 
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
 
IRJET- The Sentimental Analysis on Product Reviews of Amazon Data using the H...
IRJET- The Sentimental Analysis on Product Reviews of Amazon Data using the H...IRJET- The Sentimental Analysis on Product Reviews of Amazon Data using the H...
IRJET- The Sentimental Analysis on Product Reviews of Amazon Data using the H...
 
Investigating Assisting Mental Health Condition using Sentiment Analysis thro...
Investigating Assisting Mental Health Condition using Sentiment Analysis thro...Investigating Assisting Mental Health Condition using Sentiment Analysis thro...
Investigating Assisting Mental Health Condition using Sentiment Analysis thro...
 
IRJET- Opinion Mining and Sentiment Analysis for Online Review
IRJET-  	  Opinion Mining and Sentiment Analysis for Online ReviewIRJET-  	  Opinion Mining and Sentiment Analysis for Online Review
IRJET- Opinion Mining and Sentiment Analysis for Online Review
 
Review on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer ReviewsReview on Sentiment Analysis on Customer Reviews
Review on Sentiment Analysis on Customer Reviews
 
Depression Detection Using Various Machine Learning Classifiers
Depression Detection Using Various Machine Learning ClassifiersDepression Detection Using Various Machine Learning Classifiers
Depression Detection Using Various Machine Learning Classifiers
 
IRJET- Deep Neural Network based Mechanism to Compute Depression in Socia...
IRJET-  	  Deep Neural Network based Mechanism to Compute Depression in Socia...IRJET-  	  Deep Neural Network based Mechanism to Compute Depression in Socia...
IRJET- Deep Neural Network based Mechanism to Compute Depression in Socia...
 
Predicting Employee Attrition using various techniques of Machine Learning
Predicting Employee Attrition using various techniques of Machine LearningPredicting Employee Attrition using various techniques of Machine Learning
Predicting Employee Attrition using various techniques of Machine Learning
 

More from 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

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
MayuraD1
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
pritamlangde
 

Recently uploaded (20)

School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To Curves
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
 
UNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxUNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptx
 
Ghuma $ Russian Call Girls Ahmedabad ₹7.5k Pick Up & Drop With Cash Payment 8...
Ghuma $ Russian Call Girls Ahmedabad ₹7.5k Pick Up & Drop With Cash Payment 8...Ghuma $ Russian Call Girls Ahmedabad ₹7.5k Pick Up & Drop With Cash Payment 8...
Ghuma $ Russian Call Girls Ahmedabad ₹7.5k Pick Up & Drop With Cash Payment 8...
 
💚Trustworthy Call Girls Pune Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top...
💚Trustworthy Call Girls Pune Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top...💚Trustworthy Call Girls Pune Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top...
💚Trustworthy Call Girls Pune Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top...
 
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...Max. shear stress theory-Maximum Shear Stress Theory ​  Maximum Distortional ...
Max. shear stress theory-Maximum Shear Stress Theory ​ Maximum Distortional ...
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
 

Mano Vaidya: Gateway to Relaxation Via Machine Learning

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3173 Mano Vaidya: Gateway to Relaxation Via Machine Learning Mr. Akhilesh Sathyanarayan1, Ms. Chandana B R2, Ms. Harshitha M B3, Ms. Pooja K R4, Ms. Supriya T S5 1 Assistant Professor, Dept. of Computer Science and Engineering, Maharaja Institute of Technology Thandavapura, Mysore, Karnataka, India 2,3,4,5 Students, Dept. of Computer Science and Engineering, Maharaja Institute of Technology Thandavapura, Mysore, Karnataka, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Mental health is an essential issue in the world today. Nowadays, stress has increased a lot in the post-covid world. People are finding it hard to find ways to channel their stress or frustration. We come across many teenagers and youth succumbing to the mere stress faced in this competitive world. This is for several reasons. Chief among them is that people are not finding the right platforms and psychological guidance to overcome stress. In this project, we have planned to make an effort to reduce the stress level of people by utilizing technical advances in the field of computer science. We create an app that contains a closed set of questionnaires from SF-36, which have some weight associated with each question. Using clustering algorithms like k-means, we classify the new user into one of the three stress levels (positive, tolerable, and toxic). We modify the dataset, add the respective clusters in each row, and use the new data set to train classification algorithms like Naïve Bayes and Decision tree. We get the range limits from this and use that in our App to give results. Based on the obtained results, we recommend a few stress-relieving techniques and direct the user towards professional help, if necessary. Key Words: Mental health, Machine learning, Android application, Human Psychology, SF-36 1 INTRODUCTION Mental well-being is the state of mind of that individual and gives an overview of his/her general nature. Assessing mental wellness is critical to understanding and suggesting treatments for patients with deviated cognitive behavior. This project aims to determine the mentally distressed individuals in the target population. The basic form of getting to know about individuals in a population is to get responses to benchmarked questions and rate them depending on their responses. The Short Form 36 Health Survey Questionnaire (SF-36) is employed to provide information about the state of a population's health, aid in planning services, and assess the effectiveness of clinical and social treatments. In addition, the SF-36 evaluates the individual patient's health status and monitors and compares the disease burden. Our App includes a user login page, user profile, notifications, and dashboard - which contains a set of questionnaires for the users and track the result of the user according to their answers. Activities like meditation and deep breathing exercises, some relaxing music, and some fun games for those who enjoy playing games are suggested based on the user's stress level. One resource where we can find de- stressing games is the 'Stress relief pig' website. 1.1 Overview Our social, emotional, and mental health are all interconnected parts of our mental health. With a large population now, people are working from home and staying away from their loved ones; their mental health situation has deteriorated. It influences how we act, feel, and think. Moreover, it determines how we handle stress, relate to others, and make healthy choices. Mental health issues include thinking and emotional difficulties. Minor disruptions in various areas of life are typical, but when they cause the person great anguish, they are regarded as mental illnesses. 1.2 Problem Statement About one in four persons suffer from mental health issues, from ordinary people, such as depression and anxiety, to rare problems, such as schizophrenia and bipolar disorders. Experiencing a mental health problem is often upsetting, confusing, and frightening. The fears are often reinforced by the negative way people experience mental health problems shown by the media. The covid patients also experience many mental health issues such as anxiety, stress, insecurity, suicidal thoughts, and hopelessness. Peoples are interested in improving their mental health, especially in stressful times. However, they struggle with being unsure where to begin when learning how to improve their mental health and that it is challenging to afford expert care. We aim to aid in making a safe space for people in need of a secure and understanding community and provide mental health guidance.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3174 2. SYSTEM ANALYSIS AND DESIGN 2.1 Machine learning techniques: This section discusses various machine learning techniques used for classification and has been used for this system. The results of all these models have been compared to find the best model for the system. K-Means Algorithm: The K-Means algorithm handles clustering issues in machine learning or data science. K- Means Clustering is an unsupervised learning approach. We shall discover in this article what the K-means clustering method is, how it functions, and how to apply it in Python to divide the unlabeled dataset into various clusters. Here, K specifies how many pre-defined clusters must be produced during the operation. Here, K=3, there will be three clusters because there are three levels of classification in our project: positive, tolerable, and toxic. It enables us to split up the data into various groups. It provides a practical method for automatically identifying the groups in the unlabeled dataset without training. Fig - 1: K-Means Clustering In our project, we received data on mental health from all over the world, which gives information on the mental health status given by the users and the feedback taken by them in the last few months. Using this knowledge, we must categorize the data into three clusters: positive, tolerable, and toxic. To ascertain K's value, another option is to apply the Elbow technique. The system will randomly assign a large number of centroids and measure the separation between each data point and these centroids after we have the K value. As a result, it designates the sites from where the distance is shortest as the appropriate centroid. Each data point will then be given its closest centroid as a result. As a result, there are K initial clusters. Next, it determines the new centroid position for newly generated clusters. Compared to the one chosen at random, the centroid's location changes. Finally, each point's distance from the new centroid location is once more calculated. If necessary, the data points are moved to the new centroids, and a new calculation of the mean position of the new centroid is made. Iteration continues if the centroid shifts, indicating that convergence has not occurred. However, the centroid will reflect the outcome after it stops moving (a sign that the clustering process has converged). 3. IMPLEMENTATION 3.1 Start building screens: First, we will create the App's skeleton. Use your imagination to create an intuitive app with elements that appeal to people of all backgrounds. Make sure the workflow is simple to understand and follow. Avoid any design choice that requires the user to take a complicated path to achieve a goal that can be accomplished more straightforwardly. Fig - 2: Home Page 3.2 Questions Screen and UI refinement: Give the Questions UI a full-screen experience. In order to keep the user's attention only on the question displayed on the screen, all distractions are eliminated. Then we find out what widgets can be used to get answers from the user in a fun way. Using the K-means algorithm, we have used a data set and successfully clustered them into three clusters, i.e., positive, tolerable, and toxic. After clustering, we used a classification algorithm to classify a user into one of these classes. We have also implemented various algorithms for classifications and compared their accuracy.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3175 Fig - 3: Question displayed 3.3 By machine Learning Algorithms, the App was predicting the future results: Out of Logistic Regression, Naive Bayes, SVM (Support Vector Machine), and k-Means have the highest accuracy in our case. It includes a sequence of inquiries commonly used to predict a person's mental health. A user-friendly interface is created where the user can answer a series of questions. Each correct answer is worth some points. After the user enters answers to all questions, the average points are calculated, and his mental health is predicted. A suggestion will be made to the user based on their responses. Fig - 4: Result page 4. CONCLUSIONS With the help of the Android platform's self-analyzing treatment, the concept of inevitable improvements in mental health for human services is seen as one possible treatment option. A promising innovation stage through which to make it a reality is recognized as cell phones. Furthermore, when self-evaluation surveys are distributed through completely designed mobile phone interfaces instead of the best-in-class paper-based versions, the quantity, consistency, and character of the information are improved. A particular application is crucial to choosing the best strategy. Focusing on differentiating mental health difficulties like discouragement or bipolar disorder, we present the positives and cons of the most inspiring technological breakthroughs. Business social insurance providers are becoming increasingly interested in modifying research into products and bringing them to market because of the positive results cell phones can provide for treating mental illness. Finally, we look at the advantages that patients, parents, doctors, and providers of medical services protection can receive from using the application. ACKNOWLEDGEMENT We want to extend our deepest gratitude to our Project Guide, Prof. Akhilesh Sathyanarayan, who guided us and provided us with his valuable knowledge and suggestions on this project and helped us improve our project beyond our limits. Secondly, we would like to thank our Project Coordinator, Dr. Ranjit K N, who helped us finalize this project within the limited time frame by constantly supporting us. We would also like to express our heartfelt thanks to our Head of Department, Prof. Navile Nageshwara Naveen, for providing us with a platform where we can try to work on developing projects and demonstrate the practical applications of our academic curriculum. Finally, we want to express our gratitude to our Principal, Dr. Y T Krishne Gowda, who gave us a golden opportunity to do this wonderful project on the topic of 'Mano Vaidya: Gateway to Relaxation Via Machine Learning’, which has helped us in doing much research and learning the implementation. REFERENCES 1. Agrawal, A., Rastogi, R., Chaturvedi, D. K., Sharma, S., & Bansal, A. (2018g). Audio Visual EMG & GSR Biofeedback Analysis for Effect of Spiritual Techniques on Human Behavior and Psychic Challenges. Proceedings of the 12th INDIACom. 2. Chaturvedi, D. K. (2004). Science, Religion and Spiritual Quest. In Linkages between Social Service, Agriculture and Theology for the Future of Mankind. DEI Press.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3176 3. Chaturvedi, D. K. (2012). Human Rights and Consciousness. International Seminar on Prominence of Human Rights in the Criminal Justice System (ISPUR 2012). Proceedings of Organized Ambedkar Chair, Dept. of Contemporary Social Studies & Law. Dr. B.R. Ambedkar University. 4. Chaturvedi, D. K. Manish Arya (2013). Correlation between Human Performance and Consciousness, IEEE-International Conference on Human Computer Interaction. Proceedings of Saveetha School of Engineering. 5. Chaturvedi, D. K. (2013). The Correlation between Student Performance and Consciousness Level. Proceedings of International Conference on Advanced Computing and Communication Technologies (ICACCT™-2013). 6. Chaturvedi, D. K. (2013). A Study of Correlation between Consciousness Level and Performance of Worker, Industrial. Engineering Journal (New York), 6(8), 40–43. 7. Chaturvedi, D. K. (2014). The correlation between Student Performance and Consciousness Level. International Journal of Computing Science and Communication Technologies, 6(2), 936-939. 8. Chaturvedi, D. K. (2014). Correlation between Energy Distribution profile and Level of Consciousness. Shiakshk Parisamvad, International Journal of Education, 4(1), 1-9. 9. Chaturvedi, D.K. (2015). Dayalbagh Way of Life for Better Worldliness. Quest Journals, Journal of Research in Humanities and Social Science, 3(5), 16- 23. 10. Chaturvedi, D. K. (2019). Relationship between Chakra Energy and Consciousness. Biomedical Journal of Scientific and Technical Research, 15(3), 1-3. Doi:10.26717/BJSTR.2019.15.002705 11. Chaturvedi, D. K., Kumar, J., & Bhardwaj, R. (2015, September). Effect of meditation on Chakra Energy and Hemodynamic parameters. International Journal of Computers and Applications, 126(12), 52–59. doi:10.5120/ijca2015906304 12. Chauhan, S., Rastogi, R., Chaturvedi, D. K., Arora, N., & Trivedi, P. (2017a). Framework for Use of Machine Intelligence on Clinical Psychology to study the effects of Spiritual tools on Human Behavior and Psychic Challenges. Proceedings of NSC-2017(National system conference), DEI. 13. Glombiewski, J. A. (2013). Efficacy of EMG- and EEG- Biofeedback in Fibromyalgia Syndrome: A Meta- Analysis and a Systematic Review of Randomized Controlled Trials. Vid Based Complement Alternat Med., 2013, 962741. PMID:24082911 14. Gulati, M., Rastogi, R., Chaturvedi, D. K., Satya, S., Arora, N., & Singhal, P. (2018f). Statistical Resultant Analysis of Spiritual & Psychosomatic Stress Survey on Various Human Personality Indicators. The International Conference proceedings of ICCI 2018. 15. Gulati, M., Rastogi, R., Chaturvedi, D. K., Sharma, P., Yadav, V., Chauhan, S., Gupta, M., & Singhal, P. (2019e). Statistical Resultant Analysis of Psychosomatic Survey on Various Human Personality Indicators: Statistical Survey to Map Stress and Mental Health. In Handbook of Research on Learning in the Age of Transhumanism. Hershey, PA: IGI Global. doi:10.4018/978-1-5225- 8431-5.ch022 16. Medknow, P. (2019). Article. Annals of Indian Psychiatry Soitey- Western Zonal Branch, 3(1). 17. Rubin, A. (1992). Biofeedback and binocular vision. Journal of Behavioral Optometry, 3(4), 9598. MathSciNet. 18. Sahoo, B. M., Gupta, A. D., & Shivahare, B. D. (2018). Audio Visual EMG & GSR Biofeedback Analysis and Spiritual Methods for Understanding Human Behaviour and Psychosomatic Disorders. Amity Journal of Computational Sciences, 2(1). www.amity.edu/ajcs 19. Rastogi, R., Chaturvedi, D.K., Satya, S., Arora, N., Yadav, V., Chauhan, S., & Sharma, P. (2018c). SF-36 scores Analysis for EMG and GSR Therapy on Audio, Visual and Audio-Visual Modes for Chronic TTH. Proceedings of the ICCIDA-2018. 20. Nagai, Y., Jones, C.I., & Sen, A. (2019). Galvanic Skin Response (GSR)/Electrodermal/Skin Conductance Biofeedback on Epilepsy: A Systematic Review and Meta-Analysis. Frontier Neurology. doi:10.3389/ fneur.2019.00377 21. Rastogi, R., Chaturvedi, D. K., Arora, N., Trivedi, P., & Mishra, V. (2017b). Swarm Intelligent Optimized Method of Development of Noble Life in the perspective of Indian Scientific Philosophy and Psychology’, Proceedings of NSC-2017(National system conference), DEI
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | June 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3177 BIOGRAPHIES Prof. Akhilesh Sathyanarayan, MSE (USA), Assistant Professor, Dept. of CS&E, MIT Thandavapura. Passionate about VLSI Design & Machine Learning. Always open to network & connect. Chandana B R, Student of Maharaja Institute of Technology Thandavapura, Mysore. Pursuing Bachelor of Engineering Degree in Computer Science and Engineering. Harshitha M B, Student of Maharaja Institute of Technology Thandavapura, Mysore. Pursuing Bachelor of Engineering Degree in Computer Science and Engineering. Pooja K R, Student of Maharaja Institute of Technology Thandavapura, Mysore. Pursuing Bachelor of Engineering Degree in Computer Science and Engineering. Supriya T S, Student of Maharaja Institute of Technology Thandavapura, Mysore. Pursuing Bachelor of Engineering Degree in Computer Science and Engineering.