kylar55 commited on
Commit
d087cd4
·
verified ·
1 Parent(s): 02559e3

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -0
app.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from huggingface_hub import from_pretrained_fastai
2
+ import gradio as gr
3
+ from fastai.vision.all import *
4
+
5
+
6
+
7
+
8
+ # repo_id = "YOUR_USERNAME/YOUR_LEARNER_NAME"
9
+ repo_id = "adboudja/entregable3"
10
+
11
+ learner = from_pretrained_fastai(repo_id)
12
+ labels = learner.dls.vocab
13
+
14
+ # Definimos una función que se encarga de llevar a cabo las predicciones
15
+ def predict(text):
16
+ pred,pred_idx,probs = learner.predict(img)
17
+ if pred == "en":
18
+ return "Ingles"
19
+ if pred == "ja":
20
+ return "Japonés"
21
+ if pred == "es":
22
+ return "Español"
23
+
24
+ # Creamos la interfaz y la lanzamos.
25
+ gr.Interface(fn=predict, inputs=gr.inputs.TextBox(shape=(128, 128)), outputs=gr.outputs.Label(num_top_classes=3),examples=["私は吉良吉影、33歳、家は杜王町の北西、大きな家が立ち並ぶところにあり、未婚です。","Esta frase no es un meme","Somebody once told me the world is gonna"]).launch(share=False)