abhibisht89 commited on
Commit
3897898
1 Parent(s): 4f6eb0d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ def get_med7_ent(text):
24
 
25
  # [(ent.text, ent.label_) for ent in doc.ents]
26
 
27
- html = displacy.render(doc, style='ent', jupyter=True, options=options)
28
  print([(ent.text, ent.label_) for ent in doc.ents])
29
  return html
30
 
 
24
 
25
  # [(ent.text, ent.label_) for ent in doc.ents]
26
 
27
+ html = displacy.render(doc, style='ent', manual=True, options=options)
28
  print([(ent.text, ent.label_) for ent in doc.ents])
29
  return html
30