BESTox Server

BESTox is a novel convolutional neural network regression model, to predict the acute oral toxicity (LD50) of chemical compounds. In a benchmark experiment using a dataset (Oral Rat LD50 set) of 7413 observations (train/test, 5931/1482), BESTox achieved a squared Pearson correlation coefficient (R2) of 0.619, root-mean-squared error (RMSE) of 0.603, and mean absolute error (MAE) of 0.433.

This model learns the compositional and chemical properties of compounds from their two-dimensional binary matrices. Each matrix encodes the occurrences of certain atom types, number of bonded hydrogens, atom charge, valence, ring, degree, aromaticity, chirality, and hybridization along the SMILES string of a given compound. This model supports SMILES with max length 300 characters, SMILES with less characters will be padded with 0. (The detail presents in Figure 2 and Figure 3)

Figure 1. Illustration of the Binary-Encoded SMILES (BES) method.
Figure 2. Each SMILES character is encoded into a vector of 56 bits; each value, either a 1 or 0, represents the existence of that feature type and the element that it has.

The architecture of our optimized CNN model is presented in Figure. 3. The model contains two convolutional layers (Conv) with 512 and 1024 filters respectively. After each convolutional layer is an average pooling layer and a batch normalization layer (BN). Then, a max pooling layer is used before the learned features fed into the fully connected layers (FC). Four FCs containing 2048, 1024, 512, and 256 hidden nodes were found to be the optimal combination for toxicity prediction and the ReLU function is used to generate the prediction output (-log10(LD50 mol/kg)).

Figure 3. Proposed CNN architecture for oral toxicity prediction.

Acknowledgement

The Oral Rrat LD50 dataset used in this study was kindly provided by the author of TopTox. (Wu, K., Wei, G.W.: Quantitative toxicity prediction using topology based multitask deep neural networks. Journal of chemical information and modeling 58(2), 520–531 (2018))

Reference

BESTox: A Convolutional Neural Network Regression Model Based on Binary-Encoded SMILES for Acute Oral Toxicity Prediction of Chemical Compounds.

International Conference on Algorithms for Computational Biology. Springer, Cham, 2020.

Jiarui Chen, Hong-Hin Cheong, and Shirley Weng In Siu.