AyushDey commited on
Commit
2c1cafc
1 Parent(s): 518c7d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def merge_tokens(tokens):
20
 
21
  def named(input):
22
  output = ner(input)
23
- merged_word = merged_tokens(output)
24
  return {'text': input, 'entities': merged_word}
25
 
26
  a = gr.Interface(fn=named,
 
20
 
21
  def named(input):
22
  output = ner(input)
23
+ merged_word = merge_tokens(output)
24
  return {'text': input, 'entities': merged_word}
25
 
26
  a = gr.Interface(fn=named,