hasibzunair commited on
Commit
f615c49
·
1 Parent(s): ad0d661

update intro

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. description.html +6 -2
app.py CHANGED
@@ -52,7 +52,7 @@ def inference(img):
52
 
53
 
54
  title = "Melanoma Detection using Adversarial Training and Deep Transfer Learning"
55
- description = "This model predicts if the given image has benign or malignant symptoms. To use it, simply upload a skin lesion image, or click one of the examples to load them. Read more at the links below."
56
  article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2004.06824' target='_blank'>Melanoma Detection using Adversarial Training and Deep Transfer Learning</a> | <a href='https://github.com/hasibzunair/adversarial-lesions' target='_blank'>Github</a></p>"
57
 
58
 
 
52
 
53
 
54
  title = "Melanoma Detection using Adversarial Training and Deep Transfer Learning"
55
+ description = codecs.open("description.html", 'r', "utf-8").read()
56
  article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2004.06824' target='_blank'>Melanoma Detection using Adversarial Training and Deep Transfer Learning</a> | <a href='https://github.com/hasibzunair/adversarial-lesions' target='_blank'>Github</a></p>"
57
 
58
 
description.html CHANGED
@@ -11,11 +11,15 @@
11
  class samples and over-represented samples in a bid to generate under-represented class samples
12
  using unpaired image-to-image translation. These synthetic images are then used as additional
13
  training data in the task of detecting abnormalities in binary classification use-cases.
14
- Code is publicly available in <a href='https://github.com/hasibzunair/adversarial-lesions' target='_blank'>Github</a>.<br>
15
 
16
  This method was also effective for COVID-19 detection from chest radiography images which led to
17
  <a href="https://github.com/hasibzunair/synthetic-covid-cxr-dataset">Synthetic COVID-19 Chest X-ray Dataset for Computer-Aided Diagnosis</a>.
18
  The synthetic images not only improved performance of various deep learning architectures when used as additional training data
19
- under heavy imbalance conditions, but also detect the target class (e.g. COVID-19) with high confidence.
 
 
 
 
20
  </body>
21
  </html>
 
11
  class samples and over-represented samples in a bid to generate under-represented class samples
12
  using unpaired image-to-image translation. These synthetic images are then used as additional
13
  training data in the task of detecting abnormalities in binary classification use-cases.
14
+ Code is publicly available in <a href='https://github.com/hasibzunair/adversarial-lesions' target='_blank'>Github</a>.<br><br>
15
 
16
  This method was also effective for COVID-19 detection from chest radiography images which led to
17
  <a href="https://github.com/hasibzunair/synthetic-covid-cxr-dataset">Synthetic COVID-19 Chest X-ray Dataset for Computer-Aided Diagnosis</a>.
18
  The synthetic images not only improved performance of various deep learning architectures when used as additional training data
19
+ under heavy imbalance conditions, but also detect the target class (e.g. COVID-19) with high confidence. <br><br>
20
+
21
+ This model predicts if the given image has benign or malignant symptoms.
22
+ To use it, simply upload a skin lesion image, or click one of the examples to load them.
23
+ Read more at the links below.
24
  </body>
25
  </html>