nlmaldonadog commited on
Commit
76c14a4
1 Parent(s): ce69b3e

Deploy model

Browse files
NORMAL2-IM-0357-0001.jpeg ADDED
NORMAL2-IM-0370-0001.jpeg ADDED
NORMAL2-IM-0374-0001.jpeg ADDED
README.md CHANGED
@@ -1,13 +1,13 @@
1
- ---
2
- title: PyTorch-FastAI TPU
3
- emoji: 👀
4
- colorFrom: pink
5
- colorTo: yellow
6
- sdk: gradio
7
- sdk_version: 4.29.0
8
- app_file: app.py
9
- pinned: false
10
- license: apache-2.0
11
- ---
12
-
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+ ---
2
+ title: PyTorch-FastAI TPU
3
+ emoji: 👀
4
+ colorFrom: pink
5
+ colorTo: yellow
6
+ sdk: gradio
7
+ sdk_version: 3.18.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: apache-2.0
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from huggingface_hub import from_pretrained_fastai
2
+ import gradio as gr
3
+ from fastai.vision.all import *
4
+
5
+
6
+ repo_id = "Hitomiblood/CnnLearner_resnet34_chestXrayTPU"
7
+
8
+ learner = from_pretrained_fastai(repo_id)
9
+ labels = learner.dls.vocab
10
+
11
+ # Definimos una función que se encarga de llevar a cabo las predicciones
12
+ def predict(img):
13
+ #img = PILImage.create(img)
14
+ pred, pred_idx, probs = learner.predict(img)
15
+ return {labels[i]: float(probs[i]) for i in range(len(labels))}
16
+
17
+ # Creamos la interfaz y la lanzamos.
18
+ lista = [
19
+ 'NORMAL2-IM-0357-0001.jpeg',
20
+ 'NORMAL2-IM-0370-0001.jpeg',
21
+ 'NORMAL2-IM-0374-0001.jpeg',
22
+ 'person18_virus_49.jpeg',
23
+ 'person29_virus_64.jpeg',
24
+ 'person127_bacteria_602.jpeg',
25
+ 'person128_bacteria_605.jpeg',
26
+ ]
27
+ gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Label(num_top_classes=2),examples=lista).launch(share=False)
person127_bacteria_602.jpeg ADDED
person128_bacteria_605.jpeg ADDED
person18_virus_49.jpeg ADDED
person29_virus_64.jpeg ADDED