Literature DB >> 35799970

Transfer learning in a deep convolutional neural network for implant fixture classification: A pilot study.

Hak-Sun Kim1, Eun-Gyu Ha1, Young Hyun Kim1, Kug Jin Jeon1, Chena Lee1, Sang-Sun Han1,2.   

Abstract

Purpose: This study aimed to evaluate the performance of transfer learning in a deep convolutional neural network for classifying implant fixtures. Materials and
Methods: Periapical radiographs of implant fixtures obtained using the Superline (Dentium Co. Ltd., Seoul, Korea), TS III (Osstem Implant Co. Ltd., Seoul, Korea), and Bone Level Implant (Institut Straumann AG, Basel, Switzerland) systems were selected from patients who underwent dental implant treatment. All 355 implant fixtures comprised the total dataset and were annotated with the name of the system. The total dataset was split into a training dataset and a test dataset at a ratio of 8 to 2, respectively. YOLOv3 (You Only Look Once version 3, available at https://pjreddie.com/darknet/yolo/), a deep convolutional neural network that has been pretrained with a large image dataset of objects, was used to train the model to classify fixtures in periapical images, in a process called transfer learning. This network was trained with the training dataset for 100, 200, and 300 epochs. Using the test dataset, the performance of the network was evaluated in terms of sensitivity, specificity, and accuracy.
Results: When YOLOv3 was trained for 200 epochs, the sensitivity, specificity, accuracy, and confidence score were the highest for all systems, with overall results of 94.4%, 97.9%, 96.7%, and 0.75, respectively. The network showed the best performance in classifying Bone Level Implant fixtures, with 100.0% sensitivity, specificity, and accuracy.
Conclusion: Through transfer learning, high performance could be achieved with YOLOv3, even using a small amount of data.
Copyright © 2022 by Korean Academy of Oral and Maxillofacial Radiology.

Entities:  

Keywords:  Artificial Intelligence; Deep Learning; Dental Implants; Dental Radiography

Year:  2022        PMID: 35799970      PMCID: PMC9226228          DOI: 10.5624/isd.20210287

Source DB:  PubMed          Journal:  Imaging Sci Dent        ISSN: 2233-7822


Introduction

Dental implant treatment is a way of restoring the function of a permanent tooth after its loss.1 As implant treatment has grown more popular,2 more manufacturers have produced various implant systems.3456 This diversity provides dentists with more options among implant systems. However, since each manufacturer produces implant systems with unique implant parts,356 if patient records containing the exact name of the implant system are not available, it can be quite challenging to identify the implant system. Periapical radiographs or panoramic radiographs are often taken to help identify the implant system.7 However, without extensive experience in implant treatment using various systems, it is almost impossible to differentiate among systems based on imaging results,8 and sometimes dentists end up trying to apply every kind of implant part that would fit. To resolve this laborious situation, websites4 and programs6 have been developed to facilitate identification based on several characteristics of implant fixtures. More recently, several studies have utilized deep convolutional neural networks (DCNNs) to detect or classify various lesions or objects in dental radiographs.89101112131415 DCNNs alone can be trained to show excellent performance, but transfer learning to DCNNs is considered to be more efficient.81011 The concept of “transfer learning” refers to training neural networks that have already been trained before, with related, but new data.1617 For example, a DCNN can be pretrained with image data to develop a final network for the detection or classification of certain objects in a new image dataset, and pretraining can be applied to language data for a new language dataset in the same way. The Microsoft COCO (Common Objects in Context) image dataset is commonly used to pretrain DCNNs, and YOLOv3 (You Only Look Once version 3) is pretrained with the COCO dataset. Within the broader category of plain radiographs, periapical radiographs have better resolution than panoramic radiographs and are recommended for the assessment of implants.7 Therefore, this study aimed to evaluate the performance of an implant fixture classification model through transfer learning to YOLOv3 with periapical radiographs.

Materials and Methods

Data preparation

Periapical radiographs of adult patients who had undergone dental implant treatment at Yonsei University Dental Hospital were collected between April 2020 to July 2021 in Digital Imaging and Communication in Medicine (DICOM) format. The images were anonymized to prevent identification, and the requirement for patient consent was waived by the Institutional Review Board (IRB) of Yonsei University Dental Hospital (IRB No. 2-2021-0104) for the retrospective collection of images. The DICOM files were converted to bitmap files via ImageJ software for training and testing. The implant systems in the radiographs were noted, and 3 systems - Superline (Dentium Co. Ltd., Seoul, Korea), TS III (Osstem Implant Co. Ltd., Seoul, Korea) and Bone Level Implant (Institut Straumann AG, Basel, Switzerland) - were selected. Every implant fixture in all the bitmap images was annotated in LabelImg software (ver. 1.8.4, available at https://github.com/tzutalin/labelImg). Rectangular boxes were drawn around only the fixtures and labeled with their class name (i.e., the name of the implant system) (Fig. 1): Superline, TS III, or Bone Level Implant. The information of these annotation boxes was saved as eXtensible Markup Language (XML) files, separate from the bitmap files.
Fig. 1

Examples of annotating implant fixtures using LabelImg software. A. Superline fixtures are annotated with light green boxes. B. TS III fixtures are annotated with purple boxes. C. Bone Level Implant fixtures are annotated with red boxes.

In total, 263 periapical radiographs with 355 implant fixtures constituted the dataset. The images of fixtures were allocated to the training dataset (284 fixtures in 212 images, 80%) and test dataset (71 fixtures in 51 images, 20%). The detailed composition of the datasets is shown in Table 1.
Table 1

The number of fixtures for each implant system in the dataset

Transfer learning of a deep convolutional neural network

A DCNN (YOLOv3) was used for training and testing. The Keras library 2.2.4 (available at https://github.com/keras-team/keras/releases/tag/2.2.4) was used to implement the network, and TensorFlow 1.14 (available at https://github.com/tensorflow/tensorflow) was used as the backend on a desktop with TITAN RTX Graphics Processing Unit (NVIDIA Corp., Santa Clara, CA, USA). First, from the XML files of the training dataset, the upper left (X1, Y1) and the lower right (X2, Y2) corners’ coordinates of the annotations and their class names were extracted and saved in a comma-separated values (CSV) file. The training dataset was then divided into a 9 : 1 ratio, with 10% of the data allocated to the validation process regardless of the class names. The training dataset images were resized to 512 (width)×512 (height) pixels and used as input to the Darknet-53 backbone of YOLOv3 with the CSV file. Darknet-53 has 53 convolutional layers with batch normalization applied. Its activation function was the leaky rectified linear unit. The output from this model is 3 feature maps, where implant fixtures are automatically classified at different resolutions (Fig. 2).
Fig. 2

The structure of YOLOv3 used in this study. In training, the input data to Darknet-53, the backbone of this network, are resized images to 512 (width)×512 (height) pixels and their annotation files. Then, 3 feature maps in different resolutions are produced with classification during the training via convolution layers. The final weights acquired from this procedure are used in testing.

In training, weights produced from pretraining YOLOv3 with COCO dataset were used. This network was trained for 100, 200, and 300 epochs. For the first half of the epochs, only the last 3 layers’ weights were trained with a batch size of 2. The other half of the epochs used the whole network’s weights for training with a batch size of 4. This process of training an already pretrained network with a new dataset is called transfer learning. The final weights were produced after training and utilized in testing. After testing, the sensitivity, specificity, accuracy, and confidence score of correct classifications were assessed according to the number of epochs.

Results

The sensitivity, specificity, and accuracy of implant fixture classification according to the number of epochs are shown in Figure 3. The highest overall accuracy was 96.7% at 200 epochs, and the accuracy values for Superline, TS III, and Bone Level Implant classification were 94.4%, 95.8%, and 100.0%, respectively. Overall sensitivity and specificity were also the highest at 200 epochs, (94.4% and 97.9%, respectively); the sensitivity for Superline, TS III, and Bone Level Implant classification was 88.5%, 95.7%, and 100.0% and the specificity was 97.8%, 95.8%, and 100.0%, respectively.
Fig. 3

The performance of implant fixture classification according to the number of epochs of training for YOLOv3. A. Sensitivity. B. Specificity. C. Accuracy.

The mean values and the range of confidence scores for correct classifications according to the number of epochs are shown in Figure 4. They were also the highest at 200 epochs for all classes, with an overall mean score of 0.75. Specifically, the mean confidence score for correct classification was 0.75 for the Superline implant system, 0.71 for TSIII, and 0.79 for the Bone Level Implant. Figure 5 shows examples of correctly classified implant fixtures for each system with confidence scores. In these examples, not only did the network identify the implant systems, but the confidence scores of the decision were also above the preset threshold.
Fig. 4

Confidence score range (top and bottom) and mean values (middle) of correct classifications during testing according to the number of epochs of training for YOLOv3.

Fig. 5

Test result examples of correctly classified implant fixtures with the confidence score for each decision. A. Superline. B. TS III. C. Bone Level Implant.

Discussion

Through transfer learning of YOLOv3, the network was trained for 100, 200, or 300 epochs. The performance metrics of the network were the highest when it was trained for 200 epochs. Bone Level Implant fixtures were the best-classified system with 100.0% sensitivity, specificity, and accuracy. Simultaneously, the confidence scores were the highest at 200 epochs. These results demonstrate that after training for a certain number of epochs, performance does not necessarily show an incremental change. The confidence score indicates the certainty of classification during testing, and its threshold can be customized within the interval between 0 and 1. If a network can classify an implant fixture - that is, if the confidence score of the classification is above the threshold - it draws a box around the recognized implant fixture in the periapical image. In contrast, if the network cannot classify the implant fixture, or if the confidence score of the classification is below the threshold, it returns the periapical image without any box. Thus, for a given network, a higher threshold will yield fewer classification outcomes, while a lower threshold will lead to more classification outcomes being drawn. There has been a dramatic increase in the number of DCNN studies in recent years.12 Various networks have been applied for the detection or classification of lesions or anatomical structures.891011131415 Several studies have also evaluated the performance of DCNNs in implant fixture classification in a similar way. They mostly used networks other than YOLOv3,9 such as basic CNN,10 Visual Geometry Group,10 and GoogLeNet Inception v3.811 Takahashi et al.9 assessed the performance of implant fixture classification of 4 implant systems based on panoramic radiographs using the same network as in this study. Their dataset consisted of more than 200 implants per system (as many as 1919 implants), and they trained the network for 1000 epochs. However, the highest sensitivity was only 0.82, which is lower than the lowest sensitivity observed in this study with 200 epochs of training. Other implant classification studies also trained networks for much more than 200 epochs, such as 70010 or 1000 epochs.8911 Training for more epochs might improve performance to a certain extent, but it also consumes more time and leads to a higher probability of overfitting.17 Only periapical radiographs constituted the dataset of this study. Panoramic radiographs, which were used in other implant classification studies,891011 are acceptable as a modality for implant evaluation.7 Nevertheless, panoramic radiographs have substantial drawbacks, such as blurring due to patient motion, superimposition of the normal anatomy, and geometric distortions.18 Periapical radiography offers a limited field of view, but with a paralleling technique; thus, it has superb resolution and the least distortion, which makes it the first-choice modality after the installation of implant fixtures.719 Most other studies had datasets of thousands of images, much more than this study.891011 The performance results of this study, however, were not inferior to them, as some studies showed lower accuracy.91011 This implies that the saying “the more, the merrier” does not apply to the number of epochs and the size of the dataset in developing DCNNs for implant classification. Even though some research has shown almost perfect accuracy in implant classification,8 the increased number of implant systems used in real-world settings might require a larger dataset to maintain high accuracy. It is worthwhile to search for more efficient ways to maintain dataset quality. The ideal implant fixture classification by deep learning should classify all kinds of implant fixtures available in the market, although hundreds of systems exist.4 This is the major limitation of this study and other studies with the same purpose because the largest number of implant systems evaluated in a single study was 11.10 Another limitation is that it did not include a testing process with external data. Even though this study showed that high performance in implant fixture classification by YOLOv3 can be accomplished through transfer learning even with a small amount of data, comprehensive studies are expected in the future. Larger studies with more implant systems and heterogeneous datasets from various centers would help refine automatic implant fixture classification to the point that it is ready for use in clinical settings.
  17 in total

Review 1.  Quality of dental implants.

Authors:  Asbjørn Jokstad; Urs Braegger; John B Brunski; Alan B Carr; Ignace Naert; Ann Wennerberg
Journal:  Int Dent J       Date:  2003       Impact factor: 2.512

2.  Development of an Artificial Intelligence Model to Identify a Dental Implant from a Radiograph.

Authors:  Mehdi Hadj Saïd; Marc-Kévin Le Roux; Jean-Hugues Catherine; Romain Lan
Journal:  Int J Oral Maxillofac Implants       Date:  2020 Nov/Dec       Impact factor: 2.804

3.  In Vitro Characterization of Original and Nonoriginal Implant Abutments.

Authors:  Matthias Karl; Ainara Irastorza-Landa
Journal:  Int J Oral Maxillofac Implants       Date:  2018 Nov/Dec       Impact factor: 2.804

4.  Contrast-enhanced computed tomography image assessment of cervical lymph node metastasis in patients with oral cancer by using a deep learning system of artificial intelligence.

Authors:  Yoshiko Ariji; Motoki Fukuda; Yoshitaka Kise; Michihito Nozawa; Yudai Yanashita; Hiroshi Fujita; Akitoshi Katsumata; Eiichiro Ariji
Journal:  Oral Surg Oral Med Oral Pathol Oral Radiol       Date:  2018-10-15

5.  Trends in Dental Implant Use in the U.S., 1999-2016, and Projections to 2026.

Authors:  H W Elani; J R Starr; J D Da Silva; G O Gallucci
Journal:  J Dent Res       Date:  2018-08-03       Impact factor: 6.116

Review 6.  A scoping review of transfer learning research on medical image analysis using ImageNet.

Authors:  Mohammad Amin Morid; Alireza Borjali; Guilherme Del Fiol
Journal:  Comput Biol Med       Date:  2020-11-13       Impact factor: 4.589

7.  Usefulness of a deep learning system for diagnosing Sjögren's syndrome using ultrasonography images.

Authors:  Yoshitaka Kise; Mayumi Shimizu; Haruka Ikeda; Takeshi Fujii; Chiaki Kuwada; Masako Nishiyama; Takuma Funakoshi; Yoshiko Ariji; Hiroshi Fujita; Akitoshi Katsumata; Kazunori Yoshiura; Eiichiro Ariji
Journal:  Dentomaxillofac Radiol       Date:  2019-12-11       Impact factor: 2.419

8.  Current applications and development of artificial intelligence for digital dental radiography.

Authors:  Ramadhan Hardani Putra; Chiaki Doi; Nobuhiro Yoda; Eha Renwi Astuti; Keiichi Sasaki
Journal:  Dentomaxillofac Radiol       Date:  2021-07-08       Impact factor: 2.419

9.  Cone-beam computed tomography artifacts in the presence of dental implants and associated factors: an integrative review.

Authors:  Bianca Rodrigues Terrabuio; Caroline Gomes Carvalho; Mariela Peralta-Mamani; Paulo Sérgio da Silva Santos; Izabel Regina Fischer Rubira-Bullen; Cássia Maria Fischer Rubira
Journal:  Imaging Sci Dent       Date:  2021-03-11
View more
  1 in total

1.  Deep learning-based dental implant recognition using synthetic X-ray images.

Authors:  Aviwe Kohlakala; Johannes Coetzer; Jeroen Bertels; Dirk Vandermeulen
Journal:  Med Biol Eng Comput       Date:  2022-08-18       Impact factor: 3.079

  1 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.