- Poster presentation
- Open Access
- Published:
Neural network based classification of acute toxicity of phthalate esters to fathead minnow
Journal of Cheminformatics volume 5, Article number: P47 (2013)
Chemoinformatics, the brain child of Frank Brown [1], has emerged as new branch of science by the technological marriage of information technology and chemistry [2, 3]. Quantitative Structure-Activity Relationships (QSARs), needed for the analysis/drug-design, are in the form of structural alerts that incorporate molecular substructures, presence/absence of activity, structural relationships, etc. These QSAR can be used to perform an initial screening for classification/labelling.
QSAR of acute toxicity (from ECOSAR/TOPKAT) is used to classify phthalates into toxic/nontoxic group. The multidimensional features obtained from QSAR are having high overlapping and it is very difficult to classify it into toxic/nontoxic groups. This paper presents the classification of acute toxicity of phthalate esters to fish (Fathead Minnow) with QSAR features using Neural Network. The dataset consists of features for 324 chemicals and are available in the technical report by Tatiana Netzeva and Andrew Worth [4]. We have used four features for classification purpose namely, MW (molecular weight), WSol (water solubility), Kow (octanol-water partition coefficient), LC (lethal concentration). The toxicity values are divided into four categories, namely, no concern, harmful, toxic, and very toxic.
Neural network [5] with 100 hidden neurons is trained using scaled conjugate gradient algorithm for about 2000 epochs. The following code shows part of the Matlab code which is used in our classification.
net=newpr(traininst',trainlabels',no_hidden_neurons);
net.trainParam.epochs = 2000; net.trainParam.goal = 0.00001;
net.trainParam.min_grad = 0.000000000000000000000001;
net.divideParam.trainRatio = 1; net.divideParam.valRatio = 0;
net.divideParam.testRatio = 0; net=train(net,traininst',trainlabels');
output=sim(net,testinst'); [err,cm]=confusion(testlabels',output);
successrate=sum(diag(cm))/sum(cm(:))
The classification performance is promising. The classification rate after two cross validation simulated over 100 runs is 91.36%.
References
Brown EK: Chemoinformatics - What is it and How does it Impact Drug Discovery. Ann Rep Med Chem. 1998, 33: 375-384.
Arulmozhi V, Rajesh R: Chemoinformatics - A Quick Review. 2011, International Conference on Network and Computer Science (ICNCS), 6: 416-419.
Johann G: The Central Role of Chemoinformatics. Chemomet Intell Lab Syst. 2006, 82: 200-209. 10.1016/j.chemolab.2005.06.022.
Netzeva T, Worth A: Classification of Phthalates According to Their (Q)SAR Predicted Acute Toxicity to Fish: A Case Study. 2007, Technical report, EUR 22623 EN
Rajesh R, Rajeev K, Suchithra K, Lekhesh VP, Gopakumar V, Ragesh NK: Coherence Vector of Oriented Gradients for traffic sign recognition using neural network. 2011, 907-910. Proc IJCNN
Author information
Authors and Affiliations
Corresponding author
Rights and permissions
Open Access This article is distributed under the terms of the Creative Commons Attribution 2.0 International License (https://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.
About this article
Cite this article
Arulmozhi, V., Reghunadhan, R. Neural network based classification of acute toxicity of phthalate esters to fathead minnow. J Cheminform 5 (Suppl 1), P47 (2013). https://doi.org/10.1186/1758-2946-5-S1-P47
Published:
DOI: https://doi.org/10.1186/1758-2946-5-S1-P47
Keywords
- Neural Network
- Phthalate
- Acute Toxicity
- Conjugate Gradient
- Classification Performance