Spaces:
Build error
Build error
Anthony-Ml
commited on
Commit
•
001d98d
1
Parent(s):
1229e02
Update the app and gitignore files
Browse files- .gitignore +1 -1
- .gitignore.bak +1 -1
- app.py +2 -2
- app.py.bak +2 -3
.gitignore
CHANGED
@@ -1 +1 @@
|
|
1 |
-
/model/
|
|
|
1 |
+
/model/predictcovidfastaifinal18102023.pkl
|
.gitignore.bak
CHANGED
@@ -1 +1 @@
|
|
1 |
-
/model/
|
|
|
1 |
+
/model/
|
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
from fastai.vision.all import *
|
3 |
from efficientnet_pytorch import EfficientNet
|
4 |
|
5 |
-
learn = load_learner('
|
6 |
|
7 |
categories = learn.dls.vocab
|
8 |
|
@@ -12,7 +12,7 @@ def predict_image(get_image):
|
|
12 |
|
13 |
title = "Detect COVID_19 Infection Xray Chest Images"
|
14 |
description = "A covid19 infection classifier trained on the anasmohammedtahir/covidqu dataset with efficientnetb0 base model. Created demo using Gradio and HuggingFace Spaces."
|
15 |
-
examples = ['
|
16 |
article="<p style='text-align: center'><a href='https://www.kaggle.com/datasets/anasmohammedtahir/covidqu' target='_blank'>COVID-QU-Ex Dataset</a></p>"
|
17 |
interpretation='default'
|
18 |
enable_queue=True
|
|
|
2 |
from fastai.vision.all import *
|
3 |
from efficientnet_pytorch import EfficientNet
|
4 |
|
5 |
+
learn = load_learner('model/predictcovidfastaifinal18102023.pkl')
|
6 |
|
7 |
categories = learn.dls.vocab
|
8 |
|
|
|
12 |
|
13 |
title = "Detect COVID_19 Infection Xray Chest Images"
|
14 |
description = "A covid19 infection classifier trained on the anasmohammedtahir/covidqu dataset with efficientnetb0 base model. Created demo using Gradio and HuggingFace Spaces."
|
15 |
+
examples = ['covid/covid_1038.png', 'covid/covid_1034.png', 'covid/cd.png', 'covid/covid_1021.png', 'covid/covid_1027.png', 'covid/covid_1042.png', 'covid/covid_1031.png']
|
16 |
article="<p style='text-align: center'><a href='https://www.kaggle.com/datasets/anasmohammedtahir/covidqu' target='_blank'>COVID-QU-Ex Dataset</a></p>"
|
17 |
interpretation='default'
|
18 |
enable_queue=True
|
app.py.bak
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
from fastai.vision.all import *
|
3 |
from efficientnet_pytorch import EfficientNet
|
4 |
|
5 |
-
learn = load_learner('predictcovidfastaifinal18102023.pkl')
|
6 |
|
7 |
categories = learn.dls.vocab
|
8 |
|
@@ -12,8 +12,7 @@ def predict_image(get_image):
|
|
12 |
|
13 |
title = "Detect COVID_19 Infection Xray Chest Images"
|
14 |
description = "A covid19 infection classifier trained on the anasmohammedtahir/covidqu dataset with efficientnetb0 base model. Created demo using Gradio and HuggingFace Spaces."
|
15 |
-
examples = ['covid_1038.png', 'covid_1034.png']
|
16 |
-
examples = ['non_COVID (10610).png', 'non_COVID (10609).png']
|
17 |
article="<p style='text-align: center'><a href='https://www.kaggle.com/datasets/anasmohammedtahir/covidqu' target='_blank'>COVID-QU-Ex Dataset</a></p>"
|
18 |
interpretation='default'
|
19 |
enable_queue=True
|
|
|
2 |
from fastai.vision.all import *
|
3 |
from efficientnet_pytorch import EfficientNet
|
4 |
|
5 |
+
learn = load_learner('/model/predictcovidfastaifinal18102023.pkl')
|
6 |
|
7 |
categories = learn.dls.vocab
|
8 |
|
|
|
12 |
|
13 |
title = "Detect COVID_19 Infection Xray Chest Images"
|
14 |
description = "A covid19 infection classifier trained on the anasmohammedtahir/covidqu dataset with efficientnetb0 base model. Created demo using Gradio and HuggingFace Spaces."
|
15 |
+
examples = ['/covid/covid_1038.png', '/covid/covid_1034.png', '/covid/cd.png', '/covid/covid_1021.png', '/covid/covid_1027.png', '/covid/covid_1042.png', '/covid/covid_1031.png']
|
|
|
16 |
article="<p style='text-align: center'><a href='https://www.kaggle.com/datasets/anasmohammedtahir/covidqu' target='_blank'>COVID-QU-Ex Dataset</a></p>"
|
17 |
interpretation='default'
|
18 |
enable_queue=True
|