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: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 160
Prediction of pIC50 Values for the Acetylcholinesterase (AChE) using
QSAR Model
Shobhana A Khedekar1, Nidhi S Mhatre2, Raju Mendhe3
1Student, Computer Engineering Department, Mumbai University, Datta Meghe College of Engineering, Navi
Mumbai, Maharashtra, India
2Student, Computer Engineering Department, Mumbai University, Datta Meghe College of Engineering, Navi
Mumbai, Maharashtra, India
3Assistant Professor, Computer Engineering Department, Mumbai University, Datta Meghe College of Engineering,
Navi Mumbai, Maharashtra, India
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - To improve the efficiency, effectiveness, andquality
of the results generated, targeted drugdevelopmentand novel
drug development approaches now typically include machine
learning and deep learning algorithms. Machine learning
approaches have been used to develop drug candidates in the
field of drug discovery and development. As a result, the
consumption and overall time spent on drugdevelopmentwas
significantly reduced.
The development of powerful direct and indirect
computational approaches such as Quantitative Structure-
Activity Ratio (QSAR) has increased the potential of
compounds to become drugs. The prediction of drug-target
interactions in medicine has a significant impact. It helps in
the development of new drugs forvariousdiseases. Traditional
drug interactions with targets has manydrawbacks. Themain
disadvantage is that it is costly and time consuming. To solve
this problem, a new approach to machine learning has been
introduced. Machine learning approaches can be used to
accurately and efficiently predict drug-target interactions.
In this paper, we will be using random forest regression model
to train our machine to predict the pIC50valuesofnovel drugs
against the Alzheimer's disease target protein,
acetylcholinesterase (AChE), which is an enzyme that
catalyzes the breakdown of the neurotransmitter
acetylcholine, which is necessary for cognition and memory.
Key Words: Random Forest Regression Model, QSAR
model, pIC50
1.INTRODUCTION
ChEMBL provided a large nonredundant data set of 5,103
compounds with published IC50 values againstAChE,which
were used in a quantitative structure activity relationship
(QSAR) analysis to learn more about the origins of their
bioactivity. AChE inhibitors were described using a set of 12
fingerprint descriptors, and prediction models were built
using random forest.
Following that, the substructure fingerprint count was
thoroughly examined in order to gain useful information on
the inhibitory activity of AChE inhibitors. This information
can be applied in a variety of ways. Our paper`s goal is to
predict pIC50 values using the SMILES notation and the
ChEMBL ID as input.
1.1 Dataset
ChEMBL is a carefully selecteddatabaseofbiologicallyactive
compounds for medicinal use. It combines chemical data,
biological activity data, and genetic data to help transform
genomic data into effective new drugs. The human AChE
inhibitor data set (subject ID CHEMBL220) was collected
using the ChEMBL 20 database containing7549compounds.
A total of 5,103 unique canonical smiles were obtained after
removing duplicate canonical smiles and entries with null
canonical smiles.
Model cleaning and building were done using Jupyter
Notebook.
Fig -1: Work flow Dataset Preparation
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 161
1.2 Description of inhibitors
Several studies of the use of fingerprints to model biological
activity have investigated performance differencesbetween
types of fingerprints.Riniker andLandrum(2013)compared
and evaluated the performance of predictive models built
using RDKit 2D fingerprint descriptors.
Salts were removed prior to descriptor computation using
the built-in PaDELDescriptor software function. The
PaDELDescriptorsoftwarealsocalculatedthefourmolecular
descriptors used to define Lipinski's law: molecular weight
(MW), logarithm of the octanol/water partition coefficient
(LogP), number of hydrogen bond donors (NumHDonors),
and number of hydrogen bonds. Bond Receptors
(NumHAAcceptors).
Fig -2 Lipinski Descriptors
3. QSAR MODELING
The development of machine learning algorithms has
become an important tool in the process of drug discovery.
Quantitative Structure Activity Relationships (QSAR)
currently uses a variety of machinelearningtools todevelop
QSAR models. Using machine learning algorithms, 2DQSAR
analysis explores quantitative relationships between
molecular descriptors and biological activities. Established
QSAR models based on machine learning techniques can
help to understand the structural requirements needed to
develop novel compounds with improved biological activity.
Fig -3 Flowchart of QSAR Model
Above is a flow chart of the research workflow. Briefly, this
includes a large-scale QSAR model for the prediction and
assessment of AChEinhibitionperformedinaccordancewith
OECD guidelines.
(i) A clear method of learning;
(ii) specific application domains of the QSAR model;
(iii) Use acceptable measures of quality, sustainability and
predictability.
(iv) Mechanical analysis of the QSAR model.
3.1 Multivariate Analysis
Supervised training is the process of training a model on
labeled training data, which can be usedto predictunknown
or future data. This study builds a regression model that
predicts a continuous response variable (i.e., pIC50) as a
function of a predictor variable (i.e.,fingerprintdescriptors).
This study builds a regression model that predicts a
continuous response variable (e.g., pIC50) as a function of a
predictor variable (ego fingerprint descriptor).
A random forest (RF) classifier is an ensemble classifier
made up of multiple decision trees. Simplyput,the mainidea
of RF is that instead of building a deep decision tree with an
ever-increasing number of nodes that may be susceptible to
data overfitting and overtraining, it createsmultipletrees to
minimize variance rather than maximize accuracy. As a
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 162
result, the result is noisier than the result of a well-trained
decision tree, but is generally reliable and robust.
Fig -4 Canonical Smiles with pIC50 values and Chembl ID
3.2 QSAR Model Validation
Model validation is a critical step that should be taken to
ensure that a fitted model can accurately predict responses
for future or unknown subjects.
The performance of the QSAR models was evaluated using
four statistical parameters: Pearson's correlationcoefficient
(r) , root mean squared error (RMSE), mean squared error
(MSE) and coefficient of determination (r2).
Fig -5 Model Evaluation
Fig -6 Plot of experimental pIC50 values versus predicted
pIC50 values
Fig -7 Model Score
4. DEPLOYMENT OF MODEL
The model was then converted to a pickle file for further
distribution. An application using various features of
Streamlit is created. Users are prompted to upload a text file
containing standard Smiles and ChEMBL ids.
Once the prediction is made, the user can download it in .csv
file format and use it for further investigation.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 163
Fig -8 Flowchart of Front-end
Fig -9 Front-end Sidebar to upload file
Fig -10 Predictions of pIC50 values
5. CONCLUSIONS
The goal of this project is to create applications that help
medical researchers in the early stages of drug discovery,
where different methods have been studied and carefully
integrated.
Finally, we built a QSAR model that can predict pIC50values
for new drugs using fingerprint descriptors. We hope that
the results of this study will be a general guideline for the
development of novel AChE inhibitors..
REFERENCES
[1] “How do drugs for Alzheimer's disease work?”
Alzheimer's Society, 22 December 2021,
https://www.alzheimers.org.uk/about-
dementia/treatments/drugs/how-do-drugs-
alzheimers-disease-work. Accessed 1 March 2022.
[2] Aykul S, Martinez-Hackert E. Determination of half-
maximal inhibitory concentration using biosensor-
based protein interaction analysis. Anal Biochem.
2016 Sep 1;508:97-103. doi:
10.1016/j.ab.2016.06.025.Epub2016 Jun27.PMID:
27365221; PMCID: PMC4955526.
[3] Bosc, N., Atkinson, F., Felix, E. et al. Large scale
comparison of QSAR and conformal prediction
methods and their applications in drug discovery. J
Cheminform 11, 4 (2019).
https://doi.org/10.1186/s13321-018-0325-4
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 164
[4] Yap, Chun Wei. (2011). PaDEL-Descriptor: An Open
Source Software to Calculate Molecular Descriptors
and Fingerprints. Journal of computational
chemistry. 32. 1466-74. 10.1002/jcc.21707.
[5] Kuz'min, Victor & Polishchuk, Pavel & Artemenko,
Anatoly & Andronati, Sergey. (2011).Interpretation
of QSAR Models Based on Random Forest Methods.
Molecular Informatics. 30.
10.1002/minf.201000173.
[6] M. Stitou, H. Toufik, M. Bouachrine, H. Bih and F.
Lamchouri, "Machine learning algorithms used in
Quantitative structure-activityrelationshipsstudies
as new approaches in drug discovery," 2019
International Conferenceon IntelligentSystemsand
Advanced Computing Sciences (ISACS), 2019,pp.1-
8, doi: 10.1109/ISACS48493.2019.9068917.
[7] Bhure, Soham, et al. “Drug Generation Using
Generative Models.” vol. 08, no. 10 | Oct 2021, p. 8,
https://www.irjet.net/archives/V8/i10/IRJET-
V8I1097.pdf.

More Related Content

Similar to Prediction of pIC50 Values for AChE using QSAR Model

IRJET - A Novel Approach for Software Defect Prediction based on Dimensio...
IRJET -  	  A Novel Approach for Software Defect Prediction based on Dimensio...IRJET -  	  A Novel Approach for Software Defect Prediction based on Dimensio...
IRJET - A Novel Approach for Software Defect Prediction based on Dimensio...IRJET Journal
 
Development Of Antimalarial Drugs by Computational Analysis of Malarial Paras...
Development Of Antimalarial Drugs by Computational Analysis of Malarial Paras...Development Of Antimalarial Drugs by Computational Analysis of Malarial Paras...
Development Of Antimalarial Drugs by Computational Analysis of Malarial Paras...IRJET Journal
 
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of GlaucomaComparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of GlaucomaIRJET Journal
 
710201911
710201911710201911
710201911IJRAT
 
Gaining Insights into Patient Satisfaction through Interpretable Machine Lear...
Gaining Insights into Patient Satisfaction through Interpretable Machine Lear...Gaining Insights into Patient Satisfaction through Interpretable Machine Lear...
Gaining Insights into Patient Satisfaction through Interpretable Machine Lear...IRJET Journal
 
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...IRJET Journal
 
Diabetic Retinopathy Detection
Diabetic Retinopathy DetectionDiabetic Retinopathy Detection
Diabetic Retinopathy DetectionIRJET Journal
 
Performance Analysis and Parallelization of CosineSimilarity of Documents
Performance Analysis and Parallelization of CosineSimilarity of DocumentsPerformance Analysis and Parallelization of CosineSimilarity of Documents
Performance Analysis and Parallelization of CosineSimilarity of DocumentsIRJET Journal
 
IRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET Journal
 
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERYLIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERYIRJET Journal
 
Heart Disease Prediction using Machine Learning
Heart Disease Prediction using Machine LearningHeart Disease Prediction using Machine Learning
Heart Disease Prediction using Machine LearningIRJET Journal
 
Csit65111ASSOCIATIVE REGRESSIVE DECISION RULE MINING FOR ASSOCIATIVE REGRESSI...
Csit65111ASSOCIATIVE REGRESSIVE DECISION RULE MINING FOR ASSOCIATIVE REGRESSI...Csit65111ASSOCIATIVE REGRESSIVE DECISION RULE MINING FOR ASSOCIATIVE REGRESSI...
Csit65111ASSOCIATIVE REGRESSIVE DECISION RULE MINING FOR ASSOCIATIVE REGRESSI...cscpconf
 
Associative Regressive Decision Rule Mining for Predicting Customer Satisfact...
Associative Regressive Decision Rule Mining for Predicting Customer Satisfact...Associative Regressive Decision Rule Mining for Predicting Customer Satisfact...
Associative Regressive Decision Rule Mining for Predicting Customer Satisfact...csandit
 
Prediction of Air Quality Index using Random Forest Algorithm
Prediction of Air Quality Index using Random Forest AlgorithmPrediction of Air Quality Index using Random Forest Algorithm
Prediction of Air Quality Index using Random Forest AlgorithmIRJET Journal
 
IRJET- Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Re...
IRJET-  	  Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Re...IRJET-  	  Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Re...
IRJET- Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Re...IRJET Journal
 
Prediction of dementia using machine learning model and performance improvem...
Prediction of dementia using machine learning model and  performance improvem...Prediction of dementia using machine learning model and  performance improvem...
Prediction of dementia using machine learning model and performance improvem...IJECEIAES
 
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...IRJET Journal
 
Software Defect Prediction Using Radial Basis and Probabilistic Neural Networks
Software Defect Prediction Using Radial Basis and Probabilistic Neural NetworksSoftware Defect Prediction Using Radial Basis and Probabilistic Neural Networks
Software Defect Prediction Using Radial Basis and Probabilistic Neural NetworksEditor IJCATR
 
PREDICTING THE RISK OF HAVING HEART DISEASE USING MACHINE LEARNING TECHNIQUES
PREDICTING THE RISK OF HAVING HEART DISEASE USING MACHINE LEARNING TECHNIQUESPREDICTING THE RISK OF HAVING HEART DISEASE USING MACHINE LEARNING TECHNIQUES
PREDICTING THE RISK OF HAVING HEART DISEASE USING MACHINE LEARNING TECHNIQUESIRJET Journal
 
A Review on Prediction of Compressive Strength and Slump by Using Different M...
A Review on Prediction of Compressive Strength and Slump by Using Different M...A Review on Prediction of Compressive Strength and Slump by Using Different M...
A Review on Prediction of Compressive Strength and Slump by Using Different M...IRJET Journal
 

Similar to Prediction of pIC50 Values for AChE using QSAR Model (20)

IRJET - A Novel Approach for Software Defect Prediction based on Dimensio...
IRJET -  	  A Novel Approach for Software Defect Prediction based on Dimensio...IRJET -  	  A Novel Approach for Software Defect Prediction based on Dimensio...
IRJET - A Novel Approach for Software Defect Prediction based on Dimensio...
 
Development Of Antimalarial Drugs by Computational Analysis of Malarial Paras...
Development Of Antimalarial Drugs by Computational Analysis of Malarial Paras...Development Of Antimalarial Drugs by Computational Analysis of Malarial Paras...
Development Of Antimalarial Drugs by Computational Analysis of Malarial Paras...
 
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of GlaucomaComparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
 
710201911
710201911710201911
710201911
 
Gaining Insights into Patient Satisfaction through Interpretable Machine Lear...
Gaining Insights into Patient Satisfaction through Interpretable Machine Lear...Gaining Insights into Patient Satisfaction through Interpretable Machine Lear...
Gaining Insights into Patient Satisfaction through Interpretable Machine Lear...
 
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
 
Diabetic Retinopathy Detection
Diabetic Retinopathy DetectionDiabetic Retinopathy Detection
Diabetic Retinopathy Detection
 
Performance Analysis and Parallelization of CosineSimilarity of Documents
Performance Analysis and Parallelization of CosineSimilarity of DocumentsPerformance Analysis and Parallelization of CosineSimilarity of Documents
Performance Analysis and Parallelization of CosineSimilarity of Documents
 
IRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN Algorithm
 
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERYLIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
LIFE EXPECTANCY PREDICTION FOR POST THORACIC SURGERY
 
Heart Disease Prediction using Machine Learning
Heart Disease Prediction using Machine LearningHeart Disease Prediction using Machine Learning
Heart Disease Prediction using Machine Learning
 
Csit65111ASSOCIATIVE REGRESSIVE DECISION RULE MINING FOR ASSOCIATIVE REGRESSI...
Csit65111ASSOCIATIVE REGRESSIVE DECISION RULE MINING FOR ASSOCIATIVE REGRESSI...Csit65111ASSOCIATIVE REGRESSIVE DECISION RULE MINING FOR ASSOCIATIVE REGRESSI...
Csit65111ASSOCIATIVE REGRESSIVE DECISION RULE MINING FOR ASSOCIATIVE REGRESSI...
 
Associative Regressive Decision Rule Mining for Predicting Customer Satisfact...
Associative Regressive Decision Rule Mining for Predicting Customer Satisfact...Associative Regressive Decision Rule Mining for Predicting Customer Satisfact...
Associative Regressive Decision Rule Mining for Predicting Customer Satisfact...
 
Prediction of Air Quality Index using Random Forest Algorithm
Prediction of Air Quality Index using Random Forest AlgorithmPrediction of Air Quality Index using Random Forest Algorithm
Prediction of Air Quality Index using Random Forest Algorithm
 
IRJET- Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Re...
IRJET-  	  Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Re...IRJET-  	  Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Re...
IRJET- Comparative Study of PCA, KPCA, KFA and LDA Algorithms for Face Re...
 
Prediction of dementia using machine learning model and performance improvem...
Prediction of dementia using machine learning model and  performance improvem...Prediction of dementia using machine learning model and  performance improvem...
Prediction of dementia using machine learning model and performance improvem...
 
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
 
Software Defect Prediction Using Radial Basis and Probabilistic Neural Networks
Software Defect Prediction Using Radial Basis and Probabilistic Neural NetworksSoftware Defect Prediction Using Radial Basis and Probabilistic Neural Networks
Software Defect Prediction Using Radial Basis and Probabilistic Neural Networks
 
PREDICTING THE RISK OF HAVING HEART DISEASE USING MACHINE LEARNING TECHNIQUES
PREDICTING THE RISK OF HAVING HEART DISEASE USING MACHINE LEARNING TECHNIQUESPREDICTING THE RISK OF HAVING HEART DISEASE USING MACHINE LEARNING TECHNIQUES
PREDICTING THE RISK OF HAVING HEART DISEASE USING MACHINE LEARNING TECHNIQUES
 
A Review on Prediction of Compressive Strength and Slump by Using Different M...
A Review on Prediction of Compressive Strength and Slump by Using Different M...A Review on Prediction of Compressive Strength and Slump by Using Different M...
A Review on Prediction of Compressive Strength and Slump by Using Different M...
 

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 STRUCTUREIRJET 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 CharacteristicsIRJET 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 ADASIRJET 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 ProIRJET 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 SystemIRJET 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 bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET 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 DesignIRJET 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

Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 

Recently uploaded (20)

Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 

Prediction of pIC50 Values for AChE using QSAR Model

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 160 Prediction of pIC50 Values for the Acetylcholinesterase (AChE) using QSAR Model Shobhana A Khedekar1, Nidhi S Mhatre2, Raju Mendhe3 1Student, Computer Engineering Department, Mumbai University, Datta Meghe College of Engineering, Navi Mumbai, Maharashtra, India 2Student, Computer Engineering Department, Mumbai University, Datta Meghe College of Engineering, Navi Mumbai, Maharashtra, India 3Assistant Professor, Computer Engineering Department, Mumbai University, Datta Meghe College of Engineering, Navi Mumbai, Maharashtra, India ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - To improve the efficiency, effectiveness, andquality of the results generated, targeted drugdevelopmentand novel drug development approaches now typically include machine learning and deep learning algorithms. Machine learning approaches have been used to develop drug candidates in the field of drug discovery and development. As a result, the consumption and overall time spent on drugdevelopmentwas significantly reduced. The development of powerful direct and indirect computational approaches such as Quantitative Structure- Activity Ratio (QSAR) has increased the potential of compounds to become drugs. The prediction of drug-target interactions in medicine has a significant impact. It helps in the development of new drugs forvariousdiseases. Traditional drug interactions with targets has manydrawbacks. Themain disadvantage is that it is costly and time consuming. To solve this problem, a new approach to machine learning has been introduced. Machine learning approaches can be used to accurately and efficiently predict drug-target interactions. In this paper, we will be using random forest regression model to train our machine to predict the pIC50valuesofnovel drugs against the Alzheimer's disease target protein, acetylcholinesterase (AChE), which is an enzyme that catalyzes the breakdown of the neurotransmitter acetylcholine, which is necessary for cognition and memory. Key Words: Random Forest Regression Model, QSAR model, pIC50 1.INTRODUCTION ChEMBL provided a large nonredundant data set of 5,103 compounds with published IC50 values againstAChE,which were used in a quantitative structure activity relationship (QSAR) analysis to learn more about the origins of their bioactivity. AChE inhibitors were described using a set of 12 fingerprint descriptors, and prediction models were built using random forest. Following that, the substructure fingerprint count was thoroughly examined in order to gain useful information on the inhibitory activity of AChE inhibitors. This information can be applied in a variety of ways. Our paper`s goal is to predict pIC50 values using the SMILES notation and the ChEMBL ID as input. 1.1 Dataset ChEMBL is a carefully selecteddatabaseofbiologicallyactive compounds for medicinal use. It combines chemical data, biological activity data, and genetic data to help transform genomic data into effective new drugs. The human AChE inhibitor data set (subject ID CHEMBL220) was collected using the ChEMBL 20 database containing7549compounds. A total of 5,103 unique canonical smiles were obtained after removing duplicate canonical smiles and entries with null canonical smiles. Model cleaning and building were done using Jupyter Notebook. Fig -1: Work flow Dataset Preparation
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 161 1.2 Description of inhibitors Several studies of the use of fingerprints to model biological activity have investigated performance differencesbetween types of fingerprints.Riniker andLandrum(2013)compared and evaluated the performance of predictive models built using RDKit 2D fingerprint descriptors. Salts were removed prior to descriptor computation using the built-in PaDELDescriptor software function. The PaDELDescriptorsoftwarealsocalculatedthefourmolecular descriptors used to define Lipinski's law: molecular weight (MW), logarithm of the octanol/water partition coefficient (LogP), number of hydrogen bond donors (NumHDonors), and number of hydrogen bonds. Bond Receptors (NumHAAcceptors). Fig -2 Lipinski Descriptors 3. QSAR MODELING The development of machine learning algorithms has become an important tool in the process of drug discovery. Quantitative Structure Activity Relationships (QSAR) currently uses a variety of machinelearningtools todevelop QSAR models. Using machine learning algorithms, 2DQSAR analysis explores quantitative relationships between molecular descriptors and biological activities. Established QSAR models based on machine learning techniques can help to understand the structural requirements needed to develop novel compounds with improved biological activity. Fig -3 Flowchart of QSAR Model Above is a flow chart of the research workflow. Briefly, this includes a large-scale QSAR model for the prediction and assessment of AChEinhibitionperformedinaccordancewith OECD guidelines. (i) A clear method of learning; (ii) specific application domains of the QSAR model; (iii) Use acceptable measures of quality, sustainability and predictability. (iv) Mechanical analysis of the QSAR model. 3.1 Multivariate Analysis Supervised training is the process of training a model on labeled training data, which can be usedto predictunknown or future data. This study builds a regression model that predicts a continuous response variable (i.e., pIC50) as a function of a predictor variable (i.e.,fingerprintdescriptors). This study builds a regression model that predicts a continuous response variable (e.g., pIC50) as a function of a predictor variable (ego fingerprint descriptor). A random forest (RF) classifier is an ensemble classifier made up of multiple decision trees. Simplyput,the mainidea of RF is that instead of building a deep decision tree with an ever-increasing number of nodes that may be susceptible to data overfitting and overtraining, it createsmultipletrees to minimize variance rather than maximize accuracy. As a
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 162 result, the result is noisier than the result of a well-trained decision tree, but is generally reliable and robust. Fig -4 Canonical Smiles with pIC50 values and Chembl ID 3.2 QSAR Model Validation Model validation is a critical step that should be taken to ensure that a fitted model can accurately predict responses for future or unknown subjects. The performance of the QSAR models was evaluated using four statistical parameters: Pearson's correlationcoefficient (r) , root mean squared error (RMSE), mean squared error (MSE) and coefficient of determination (r2). Fig -5 Model Evaluation Fig -6 Plot of experimental pIC50 values versus predicted pIC50 values Fig -7 Model Score 4. DEPLOYMENT OF MODEL The model was then converted to a pickle file for further distribution. An application using various features of Streamlit is created. Users are prompted to upload a text file containing standard Smiles and ChEMBL ids. Once the prediction is made, the user can download it in .csv file format and use it for further investigation.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 163 Fig -8 Flowchart of Front-end Fig -9 Front-end Sidebar to upload file Fig -10 Predictions of pIC50 values 5. CONCLUSIONS The goal of this project is to create applications that help medical researchers in the early stages of drug discovery, where different methods have been studied and carefully integrated. Finally, we built a QSAR model that can predict pIC50values for new drugs using fingerprint descriptors. We hope that the results of this study will be a general guideline for the development of novel AChE inhibitors.. REFERENCES [1] “How do drugs for Alzheimer's disease work?” Alzheimer's Society, 22 December 2021, https://www.alzheimers.org.uk/about- dementia/treatments/drugs/how-do-drugs- alzheimers-disease-work. Accessed 1 March 2022. [2] Aykul S, Martinez-Hackert E. Determination of half- maximal inhibitory concentration using biosensor- based protein interaction analysis. Anal Biochem. 2016 Sep 1;508:97-103. doi: 10.1016/j.ab.2016.06.025.Epub2016 Jun27.PMID: 27365221; PMCID: PMC4955526. [3] Bosc, N., Atkinson, F., Felix, E. et al. Large scale comparison of QSAR and conformal prediction methods and their applications in drug discovery. J Cheminform 11, 4 (2019). https://doi.org/10.1186/s13321-018-0325-4
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 164 [4] Yap, Chun Wei. (2011). PaDEL-Descriptor: An Open Source Software to Calculate Molecular Descriptors and Fingerprints. Journal of computational chemistry. 32. 1466-74. 10.1002/jcc.21707. [5] Kuz'min, Victor & Polishchuk, Pavel & Artemenko, Anatoly & Andronati, Sergey. (2011).Interpretation of QSAR Models Based on Random Forest Methods. Molecular Informatics. 30. 10.1002/minf.201000173. [6] M. Stitou, H. Toufik, M. Bouachrine, H. Bih and F. Lamchouri, "Machine learning algorithms used in Quantitative structure-activityrelationshipsstudies as new approaches in drug discovery," 2019 International Conferenceon IntelligentSystemsand Advanced Computing Sciences (ISACS), 2019,pp.1- 8, doi: 10.1109/ISACS48493.2019.9068917. [7] Bhure, Soham, et al. “Drug Generation Using Generative Models.” vol. 08, no. 10 | Oct 2021, p. 8, https://www.irjet.net/archives/V8/i10/IRJET- V8I1097.pdf.