Anthony-Ml commited on
Commit
8b7fd62
1 Parent(s): 549dcf1

Update app.py

Browse files

Update the HTML

Files changed (1) hide show
  1. app.py +17 -7
app.py CHANGED
@@ -5,13 +5,23 @@ from efficientnet_pytorch import EfficientNet
5
 
6
  title = "COVID_19 Infection Detectation App!"
7
  head = (
8
- "<div>"
9
- "This Space demonstrates model based on efficientnet base model. I has been trained to classify chest xray image."
10
- " "
11
- "To test it, Use the Example Images Provided or Upload your own xray images the space provided."
12
- " "
13
- "The model is trained using [anasmohammedtahir/covidqu](https://www.kaggle.com/datasets/anasmohammedtahir/covidqu) dataset"
14
- "</div>"
 
 
 
 
 
 
 
 
 
 
15
  )
16
  description = head
17
 
 
5
 
6
  title = "COVID_19 Infection Detectation App!"
7
  head = (
8
+ "<center>"
9
+ "<img src='Gradcam.png' width=400>"
10
+ "This Space demonstrates model based on efficientnet base model. I has been trained to classify chest xray image."
11
+ "</center>"
12
+ "<body>"
13
+
14
+ "<h2>"
15
+ "This Space demonstrates a model based on efficientnet base model"
16
+ "</h2>"
17
+ "<p>"
18
+ "I has been trained to classify chest xray image. To test it, Use the Example Images Provided or Upload your own xray images the space provided."
19
+ "</p>"
20
+ "<p>"
21
+ "The model is trained using [anasmohammedtahir/covidqu(https://www.kaggle.com/datasets/anasmohammedtahir/covidqu) dataset"
22
+ "</p>"
23
+
24
+ "</body>"
25
  )
26
  description = head
27