key: cord-0696376-e81dc12t authors: Li, Yifan; Pei, Xuan; Guo, Yandong title: 3D CNN classification model for accurate diagnosis of coronavirus disease 2019 using computed tomography images date: 2021-07-23 journal: J Med Imaging (Bellingham) DOI: 10.1117/1.jmi.8.s1.017502 sha: 7c8d1c9d3053e72dd1eafb13496f41c624ba5a37 doc_id: 696376 cord_uid: e81dc12t Purpose: The coronavirus disease (COVID-19) has been spreading rapidly around the world. As of August 25, 2020, 23.719 million people have been infected in many countries. The cumulative death toll exceeds 812,000. Early detection of COVID-19 is essential to provide patients with appropriate medical care and protecting uninfected people. Approach: Leveraging a large computed tomography (CT) database from 1112 patients provided by China Consortium of Chest CT Image Investigation (CC-CCII), we investigated multiple solutions in detecting COVID-19 and distinguished it from other common pneumonia (CP) and normal controls. We also compared the performance of different models for complete and segmented CT slices. In particular, we studied the effects of CT-superimposition depths into volumes on the performance of our models. Results: The results show that the optimal model can identify the COVID-19 slices with 99.76% accuracy (99.96% recall, 99.35% precision, and 99.65% [Formula: see text]-score). The overall performance for three-way classification obtained 99.24% accuracy and a macroaverage area under the receiver operating characteristic curve (macro-AUROC) of 0.9998. To the best of our knowledge, our method achieves the highest accuracy and recall with the largest public available COVID-19 CT dataset. Conclusions: Our model can help radiologists and physicians perform rapid diagnosis, especially when the healthcare system is overloaded. (1) We investigated several 3D CNN technologies, including basic block, bottleneck block, and (2+1)D convolution and reported the optimal solution for detecting COVID-19 from CT images. (2) We used different depths to superimpose CT slices for preprocessing to obtain more information between CT slices. The superimposed volume was used as the input of the 3D classification network. The experimental results demonstrate that the depth of volume has a significant influence on the model effect. (3) We conducted experiments with a large CT dataset provided by the China Consortium of Chest CT Image Investigation (CC-CCII), 21 including complete CT slices and segmented CT slices. Experimental results demonstrate that our method can identify the COVID-19 slices with 99.76% accuracy, 99.96% recall, 99.35% precision, and 99.65% F1-sorce. The overall performance for three-way classification obtained 99.24% accuracy and a macroaverage area under the receiver operating characteristic curve (macro-AUROC) of 0.9998. To the best of our knowledge, this is the most accurate result with the largest public available dataset. A large CT dataset from the CC-CCII was used 21 in this paper; it consists of a total of 137,256 complete CT images from 691 patients and 42,861 segmented CT images from 421 patients (Fig. 1 ). Institutional Review Board (IRB)/Ethics Committee approvals were obtained in all of the institutions involved, and consent was obtained from all participants. The dataset of raw chest CT images and clinical metadata is available through the China National Center for Bioinformation at the website in Ref. 22 . The original CT image dimensions in the CC-CCII dataset are 512*512. A total of 110,420 complete CT images (80.4%) were employed to train and validate our model for discriminating COVID-19 from other CP and normal controls ( Table 1 ). The remaining 26,836 CT images (19.6%) were used as the test set. In addition, the test set used CT slices selected from the individuals who were not included in the training and validation stages. Viral pneumonia, bacterial pneumonia, and mycoplasma pneumonia are included in the CP group, all of which are the most common causes of pneumonia in China. We also tried to use segmented CT images to train, validate, and test our model (Table 2 ). CT slices were normalized to 512*512*3 for the height, width, and channel, respectively. To leverage the 3D volume of CT images to capture a wide range of spatial information both within the CT slices and between CT slices, 23 n adjacent CT slices in the same CT scan were stacked vertically to form a volume, where n denotes the depth in the 3D volume. Depth can be regarded as the height of a CT scan from a 3D perspective or the number of slices after downsampling from one CT scan. We then transposed the volume from D × H × W × C (D denotes depth, H denotes height, W denotes width, and C denotes channel) to C × D × H × W, to derive a tensor. The diagnostic classifier took the tensor as input and used the classification network to generate the three-level probabilities of COVID-19, CP, and normal controls, predicting the volume's label with the maximum probability after the softmax activation function. The detailed structure of the three-way classification network was shown in Table 3 , based on the 3D ResNet-18 network. 26 The network used multiple 3D basic blocks with residual connections that could continuously extract local and global contextual features and used a fully connected layer followed by the softmax activation function to calculate final predictions with the maximum probability for three types of diagnostic results. The cross-entropy was employed as the loss function between the final predictions and ground truth labels to train the 3D classification network. The Adam optimizer with an initial learning rate at 0.001 was used in the training set, which was decayed by a factor of 0.1 every 10 epochs. The epochs in the training stage were 20 in total. Considering the impact of batch size on the model's performance, discussion of the training batch size is given in the next section. The whole training, validation, and testing procedures were conducted with Pytorch (v.1.2.0) on NVIDIA Tesla V100 SXM2 graphical processing units. 27 The basic block of ResNets consists of two convolutional layers (Fig. 2 ). There are batch normalization and ReLU activation function after each convolutional layer. A shortcut pass connects the top of the block to the layer just before the last ReLU activation function in the block. ResNet-18 and 34 adopt the basic blocks. We use identity connections and zero padding as the shortcuts to the basic blocks to avoid increasing the number of parameters of these relatively shallow networks. 28 The bottleneck block of ResNets consists of three convolutional layers (Fig. 2) . The kernel size of the first and third convolutional layers are 1 × 1 × 1, and the second convolutional is Rð2 þ 1ÞD convolution architecture was designed to decompose spatial and temporal modeling into two separate steps by Tran et al. 25 Whereas the CT slice sequence from the bottom to the top of the same volume block has a similar spatial relation in CT imaging process, the R(2+1)D convolution architecture can be replaced the 3D convolutional filters of size N × t × d × d with a (2+1)D block consisting of 2D convolutional filters of size N × 1 × d × d and temporal convolutional filters of size N × t × 1 × 1 (Fig. 3 ). Table 3 Network architectures. Each convolutional layer is followed by batch normalization 24 and a ReLU activation function. 25 Downsampling is performed in the first convolutional layer of each block with the stride of 2. F is the number of feature channels corresponding in Fig. 2 , and N is the number of blocks in each layer. Layer name Architecture 18-layer 34-layer 50-layer A nonlinear correction is added between these two operations in the R(2+1)D convolution architecture. Compared with a classical 3D convolutional network using the same number of parameters, this effectively doubles the number of nonlinearities, allowing the model to represent more complex functions. And the decomposition from the R(2+1)D architecture helps to optimize, resulting in lowering both training loss and test loss in practice. The accuracy of a classifier determines the correctness of the predicted value, the precision determines the repeatability of the measurement or the correctness of the predicted value, and the recall or sensitivity indicates how many of the correct results are discovered. The F1-score is used as an overall measure of the model accuracy, combining precision and recall metrics to calculate a balanced average result. First, we calculated the accuracy, recall, precision, and F1-sorce of COVID-19 compared with the two other types. The binary classification formulas for these values are summarized as Eqs. (1) to (4), where TP, TN, FP, and FN are true positive, true negative, false positive, and false negative, respectively, with the positive corresponding to COVID-19 and the negative corresponding to the two other classes. Accuracy and the macroaverage area under the receiver operating characteristic curve (macro-AUROC) were calculated for overall three-way classification. The three-way classification accuracy formula is summarized as Eq. (5), where T and N are all truth and fault, respectively. Bootstrap technology is used to calculate metrics' average and 95% confidence intervals by nonparametric and unstratified resampling of 1000 times. 29 Fisher's exact test is employed to investigate if the improvement in results are significant: E Q -T A R G E T ; t e m p : i n t r a l i n k -; e 0 0 1 ; 1 1 6 ; 2 8 7 Accuracy E Q -T A R G E T ; t e m p : i n t r a l i n k -; e 0 0 2 ; 1 1 6 ; 2 3 3 E Q -T A R G E T ; t e m p : i n t r a l i n k -; e 0 0 3 ; 1 1 6 ; 2 0 0 E Q -T A R G E T ; t e m p : i n t r a l i n k -; e 0 0 4 ; 1 1 6 ; 1 6 7 E Q -T A R G E T ; t e m p : i n t r a l i n k -; e 0 0 5 ; 1 1 6 ; 1 3 4 3 Results Zhang et al. 21 employed a diagnostic system based on a lung-lesion segmentation model. The diagnosis took the segmented CT slices as an input generated by segmentation networks using the 3D ResNet-18 network, where the depth and batch size are 64 and 8, respectively. To study the performance difference between the complete and segmented CT slices using the classification network only, 3D ResNet-18 is selected as the baseline model to get metrics from different experiment conditions. Due to the small number of segmented CT slices, we used the same number of complete CT slices, which were split in the same way for training, validation, and test ( Table 2 ). The accuracy is used to evaluate the overall performance for three-way classification. With the same type of complete CT image, the model's performance of the more slices group is lower than the less slices group. The possible reason for this is different CP proportions in the more slices group and the less one. The slice number of each class is the same in the less slices group and the segmented CT group. The number of CP slices in the less slices group is 365, accounting for only 0.85% (n ¼ 42;861), while the number in the more slices group is 44,880, accounting for 32.70% (n ¼ 137;256). The small number of CP makes the classification task simple in the less slices group. The model's performance is higher even if the model does not distinguish between CP and NCP. With the same number of slices, the accuracy of complete CT is higher than that of segmented, and the recall is higher ( Table 4 ). The possible reasons include the following: (1) the quality control of segmented CT from CC-CCII dataset is not enough, the segmented image' boundary is not smooth, and some information is lost. (2) The segmented image dataset is classunbalanced, and the CP accounts for a smaller proportion in the whole segmented CT dataset. (3) The complete CT image may contain more information that can be learned than segmented ones. Therefore, complete CT slices were used for the rest of this study. Table 4 Accuracy and recall of complete and segmented CT Images. Accuracy is for three-way classification. F 1-score, precision, and recall are for binary classification for COVID-19 and the two other classes. The results are represented as average value (the lower bound of 95% confidence interval and the upper bound of 95% confidence interval) generated by bootstrap. Depth The depth and batch size have a powerful influence on the model training stage and final accuracy. We first experimented with the three-way classification effect of different depths when the batch size was equal to 8 (Table 5 and Fig. 4) . The dataset experiment settings are shown in Table 1 . From Table 5 and Fig. 4 , we can conclude that the accuracy and F1-score increase as the depth decreases under the same batch size. We next experimented with the effect of different batch sizes on the performance of the three-classification model ( Table 6 and Fig. 5 ). Due to the limited space on the GPU, we did not use the batch size of 64 for depths 8 and 16. From Table 6 and Fig. 5 , we conclude that the accuracy and F1-score are significantly improved as the batch size is increased to 32. In particular, when the depth is 2 and 4, the accuracy and F1-score reached 0.99, but increasing the batch size to 64 does not further improve the model performance and the accuracy and recall rate even decrease. Table 5 Effect of depths on different metrics. Accuracy is for three-way classification. F 1-score, precision, and recall are for binary classification for COVID-19 and the two other classes. The results are represented as average value (the lower bound of 95% confidence interval and the upper bound of 95% confidence interval) generated by bootstrap. Bold font indicates the best result. Fisher's exact test was used to investigate if the improvement in results is significant between the first group and the others. The value of p indicate statistical significance as assessed by two-sided Fisher's exact tests. "*" means p < 0.05, "**" means p < 0.01 and "***" means p < 0.001. Fig. 4 The effect of depths on different metrics. According to the conclusion in Table 6 , we use optimal parameters of 4 for depth and 32 for batch size to train different models, including 3D ResNet-34, 3D ResNet-50, (2+1)D ResNet-18, and (2+1)D ResNet-34. The 3D ResNet-18 model used the best performance group (4 for depth and 32 for batch size) and results from Table 6 . Table 7 shows the results of different models. As the number of 3D ResNet layers deepened to 34, the network appeared to overfit and the accuracy and recall dropped slightly. The performances of 3D ResNet-34 and 3D ResNet-50 were relatively close. After replacing the 3D convolution with (2+1)D, the accuracy decreased. Our optimal model, which is from the 3D ResNet-18 network was able to discriminate COVID-19 from the two other classes (other CP and normal controls) with 99.76% accuracy, Table 6 Effect of batch sizes on different metrics. Accuracy is for three-way classification. F 1score, precision, and recall are for binary classification for COVID-19 and the two other classes. The results are represented as average value (the lower bound of 95% confidence interval and the upper bound of 95% confidence interval) generated by bootstrap. Bold font indicates the best result. Fisher's exact test was used to investigate if the improvement in results is significant between the first group and the others. The value of p indicate statistical significance as assessed by two-sided Fisher's exact tests. "*" means p < 0.05, "**" means p < 0.01 and "***" means p < 0.001. 99.96% recall, 99.35% precision, and 99.65% F1-score (Fig. 6) . The overall performance for three-way classification obtained 99.24% accuracy and macro-AUROC of 0.9998. Although our model achieved high performance in CC-CCII dataset, it is still a black box model. As a discriminative model, the CNN only receives input and gives high accuracy output but cannot give the basis of prediction. The auxiliary information for doctors' diagnosis is very limited because it cannot provide a decision-making basis. We use the Smooth Grad-CAM++ activity map algorithm to inspect the model's inner mechanism. We apply the Smooth Grad-CAM++ algorithm on a single slice from the volume of each class via the 3D ResNet model (depth is 4, batch size is 32) with the target layer at the last convolution layer before the global Table 7 Comparison of classification results using different models. Accuracy is for three-way classification. F 1-score, precision, and recall are for binary classification for COVID-19 and the two other classes. The results are represented as average value (the lower bound of 95% confidence interval and the upper bound of 95% confidence interval) generated by bootstrap. Bold font indicates the best model group. Fisher's exact test was used to investigate if the improvement in results is significant between the first group and the others. The value of p indicate statistical significance as assessed by two-sided Fisher's exact tests. "*" means p < 0.05, "**" means p < 0.01 and "***" means p < 0.001. average pooling layer. Regions that appear purple and brighter have a larger impact on the model's decision to classify a slice to its own class. The model focuses on some lung edges and messy positions in the normal control case (C, F, and I). Compared with the normal control case, the GGO, and pulmonary consolidation (CL) area on the slice can provide significant information for the doctor to diagnose COVID-19 and CP. From Fig. 7 , we can see that the model pays more attention to the GGO and CL area accurately no matter whether it is dispersed [ Figs. 7(a) The clinical manifestations and radiological findings of NCP and CP are similar. It is difficult to identify them by a CT scan only. Figure 7 shows that COVID-19 is more related to GGO located in the subpleural area, and CP is more related to the block of CL. The lesion area on the CT image is some small GGO areas along the bronchovascular bundle or located in the subpleural area in the early stage of COVID-19 (A). However, considering the sample capacity of the CC-CCII dataset, visualization has its limitations, and the specific imaging features of COVID-19 and CP need further study. For COVID-19, getting a diagnosis as soon as possible is essential. As a powerful tool, CT provides chest scans in a short time. In this study, we presented a deep-learning method for automatic diagnosis of COVID-19 from chest CT images to assist clinicians and radiologists in combating this pandemic. According to the depth and batch size parameters' setting of Zhang et al., 21 the classification network is used for three classifications, instead of the combination of segmentation network and machine learning models. The results show that model's performance of using the complete CT is better than that of the segmentation CT, which shows that the complete CT can provide more information than the segmented CT in the end-to-end classification task of COVID-19 and other kinds of pneumonia. Due to the lack of image annotation, we cannot compare the end-to-end classification network model with the machine learning model based on lung-lesion features. Next, we plan to extract the lesion region information based on segmentation methods and then make the corresponding comparison. To find out whether the depth and batch size settings are suitable for the 3D classification network, we carried out experiments to explore the optimal parameters of depth and batch size. Combining different depth and batch sizes, we obtained a series of results and found that the model's performance is the highest when the depth is 4 and the batch size is 32. The series of experiments did not change the basic parameter settings of the classic 3D ResNet model structure; they only modified the dimension of the data batch input. The results are convincing only when the baseline model is discussed. For a model with a different structure, we intend to study further. Using the model with the highest performance for visualization, we found that the model can focus on the GGO on the edge of the lung boundary. However, there are some messy locations in all three class cases, and we speculate that the noise area is used to determine the position of a slice in volume. In this work, we designed a deep-learning method using CT images to classify COVID-19, CP, and normal controls. We employed a variety of 3D ResNet models and finally determined the best model as 3D ResNet-18. Experimental results show that 3D ResNet-18 is the best model for distinguishing COVID-19 from CP and normal controls at the CC-CCII dataset. We proposed a preprocessing method that was to superimpose CT slices into volumes of different depths. We raised the issue of the impact of depth on classification performance and proved that depth 4 had the largest improvement in model performance instead of 64. A total of 110,420 complete CT images (80.4%) were employed to train and validate our model, and the remaining 26,836 CT images (19.6%) were used as the test set. Our model has a high performance, achieving recall of 99.96%, precision of 99.35%, F1-sorce of 99.65%, three-way classification accuracy of 99.24%, and macro-AUROC of 0.9986. We believe that our model's high performance can be attributed to a large, high-quality dataset that we employed and different depths used to train 3D models. Our deep-learning model can alleviate the significant need for diagnostic expertise when the health system is overburdened in pandemic situations or remote areas. Currently, our model is designed to help radiologists and clinicians as an effective first-time screening tool as this can reduce patient waiting time and shorten diagnostic workflow time, thereby lessening the overall workload of radiologists and enabling them to respond quickly and effectively in emergency situations. No conflicts of interest, financial or otherwise, are declared by the authors. A novel coronavirus emerging in China: key questions for impact assessment A novel coronavirus outbreak of global health concern Clinical characteristics of coronavirus disease 2019 in China Clinical features of patients infected with 2019 novel coronavirus in Wuhan, China A familial cluster of pneumonia associated with the 2019 novel coronavirus indicating person-to-person transmission: a study of a family cluster Importation and human-to-human transmission of a novel coronavirus in Vietnam Transmission of 2019-nCoV infection from an asymptomatic contact in Germany A novel coronavirus from patients with pneumonia in China Characteristics of and important lessons from the coronavirus disease 2019 (COVID-19) outbreak in China: summary of a report of 72 314 cases from the Chinese Center for Disease Control and Prevention Coronavirus: COVID-19 has killed more people than SARS and MERS combined, despite lower case fatality rate Coronavirus disease 2019 (COVID-19): a perspective from China Dual-sampling attention network for diagnosis of COVID-19 from community acquired pneumonia CT imaging features of 2019 novel coronavirus (2019-nCoV) Deep learning algorithms for detection of critical findings in head CT scans: a retrospective study A guide to deep learning in healthcare Efficacy of a deep learning system for detecting glaucomatous optic neuropathy based on color fundus photographs A call for deep-learning healthcare Prediction of cardiovascular risk factors from retinal fundus photographs via deep learning Development and validation of a deep learning system for diabetic retinopathy and related eye diseases using retinal images from multiethnic populations with diabetes High-performance medicine: the convergence of human and artificial intelligence Clinically applicable AI system for accurate diagnosis, quantitative measurements, and prognosis of Covid-19 pneumonia using computed tomography SACNN: self-attention convolutional neural network for low-dose CT denoising with self-supervised perceptual loss network Batch normalization: accelerating deep network training by reducing internal covariate shift A closer look at spatiotemporal convolutions for action recognition Learning spatio-temporal features with 3D residual networks for action recognition Pytorch: an imperative style, high-performance deep learning library Deep residual learning for image recognition Bootstrap methods: another look at the jackknife Smooth grad-CAM++: an enhanced inference level visualization technique for deep convolutional neural network models