File size: 2,248 Bytes
5b6e6d1
 
 
 
527b1bc
92112a8
fecec33
 
 
 
 
 
 
 
 
249d17a
6c6a9ee
249d17a
 
 
 
6c6a9ee
 
249d17a
 
 
 
fecec33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b8a1782
e8f64e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44


import gradio as gr  

title="Thyroid Tumor Classification On Ultrasound Images"
article = "This study was made by S.Serdar Helli using HF Transformers ConvNext"

description=f'''
Thyroid nodule is one of the most common endocrine carcinomas. Due to its higher reveal ability and ability to distinguish between benign and malignant nodules in pathological features, ultrasonography has become the most widely used modality for finding and diagnosing thyroid cancer when compared to CT and MRI.

In this study, the purpose is the classification of thyroid tumors on ultrasound images with 2 different categories:

- Malign(1)
- Benign(0)


Benign :

- 1	Normal thyroid glandle	
- 2	Effectively certainly benign	Simple cyst	- % 0 Risk of malignancy
- 3	Very probably benigped	- %0.25 Risk of malignancy

Malign :
- 4A	Suspicious nodules; low risk of malignancy	- % 6 Risk of malignancy
- 4B	Suspicious nodules; high risk of malignancy	One or two features of high suspicion	- %69 Risk of malignancy
- 5	Effectively certainly malignant nodules	- % 100 Risk of malignancy

This study was made using HF Transformers :

- [ On Google Colab](https://colab.research.google.com/drive/1ueSq8Y_NmFr7NGdtS8FStI3d2HR-43LD?usp=sharing)

- [On Github](https://github.com/SerdarHelli/The-Classification-of-Thyroid-Tumors-on-UltraSound-Images-using-Deep-Learning-Methods)

- [ Using Keras and GradCam With MultiClasses  Medium Article](https://serdarhelli.medium.com/the-basic-classification-of-thyroid-tumors-on-ultrasound-images-using-deep-learning-methods-46f812d859ea)


The Dataset:
[Colombia National University presented an open access database of thyroid ultrasound images.](http://cimalab.unal.edu.co/?lang=es&mod=program&id=5)
Ref : Pedraza, Lina & Vargas, Carlos & Narváez, Fabián & Durán, Oscar & Muñoz, Emma & Romero, Eduardo. (2015). An open access thyroid ultrasound-image Database. Progress in Biomedical Optics and Imaging — Proceedings of SPIE. 9287. 10.1117/12.2073532. '''



examples=[["example_Benign1.png" ],["example_Benign2.png"],[ "example_Malign2.png"]]
gr.Interface.load("huggingface/SerdarHelli/ThyroidTumorClassificationModel",title=title,description=description,article=article,examples=examples, cache_examples=False).launch()