wangjin2000 commited on
Commit
ef08101
·
verified ·
1 Parent(s): ed919b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -133,7 +133,14 @@ interface = gr.Interface(
133
  inputs=input_component,
134
  outputs=output_component,
135
  title="Lung Nodule Detection",
136
- examples = ["samples/81_80.dcm","samples/110_109.dcm","samples/189_188.dcm"],
 
 
 
 
 
 
 
137
  description=' "This online deployment proves the effectiveness and efficient function of the machine learning model in identifying lung cancer nodules. The implementation of YOLO for core detection tasks is employed that is an efficient and accurate algorithm for object detection. Through the precise hyper-parameter tuning process, the model proposed in this paper has given an impressive boost in the performance. Moreover, the model uses Retinanet algorithm which is recognized as the powerful tool effective in dense object detection. In an attempt to enhance the model’s performance, the backbone of this architecture consists of a Feature Pyramid Network (FPN). The FPN plays an important role in boosting the model’s capacity in recognizing objects in different scales through the construction of high semantic feature map in different resolutions. In conclusion, this deployment encompasses YOLOv5, hyperparameter optimization, Retinanet, and FPN as one of the most effective and modern solutions for the detection of lung cancer nodules." ~ Basil Shaji 😇',
138
  live=False,
139
  )
 
133
  inputs=input_component,
134
  outputs=output_component,
135
  title="Lung Nodule Detection",
136
+ examples=[
137
+ "image_1.jpg",
138
+ "image_2.jpg",
139
+ "image_3.jpg",
140
+ "image_4.jpg",
141
+ "image_5.jpg",
142
+ "image_6.jpg",
143
+ ],
144
  description=' "This online deployment proves the effectiveness and efficient function of the machine learning model in identifying lung cancer nodules. The implementation of YOLO for core detection tasks is employed that is an efficient and accurate algorithm for object detection. Through the precise hyper-parameter tuning process, the model proposed in this paper has given an impressive boost in the performance. Moreover, the model uses Retinanet algorithm which is recognized as the powerful tool effective in dense object detection. In an attempt to enhance the model’s performance, the backbone of this architecture consists of a Feature Pyramid Network (FPN). The FPN plays an important role in boosting the model’s capacity in recognizing objects in different scales through the construction of high semantic feature map in different resolutions. In conclusion, this deployment encompasses YOLOv5, hyperparameter optimization, Retinanet, and FPN as one of the most effective and modern solutions for the detection of lung cancer nodules." ~ Basil Shaji 😇',
145
  live=False,
146
  )