GPalomeque commited on
Commit
d0d2f52
1 Parent(s): f3fe141

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -25,9 +25,9 @@ def ner_tagging(text):
25
 
26
  return output
27
 
28
- def main(text):
29
  entidades = ner_tagging(text)
30
  return entidades
31
 
32
- iface = gr.Interface(fn=get_entities, inputs="text", outputs=['highlight'], examples=examples, title="Test of jurisbert-finetuning-ner ",)
33
  iface.launch()
 
25
 
26
  return output
27
 
28
+ def process(text):
29
  entidades = ner_tagging(text)
30
  return entidades
31
 
32
+ iface = gr.Interface(fn=get_entities, inputs="text", outputs=['highlight'], examples=examples, title="Test of jurisbert-finetuning-ner ",)
33
  iface.launch()