dar-tau commited on
Commit
4a4a614
·
verified ·
1 Parent(s): e231260

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ def analyze_sentence(index, vis_type, vis_format):
49
  for i in range(len(tokenized) - 1) for j in range(i) if plot_data[i, j] > 0.5
50
  ]
51
  }]
52
- graph_output = displacy.serve(ex, style="dep", compact=True, manual=True)
53
  graph_output = ("<div style='max-width:100%; max-height:360px; overflow:auto'>"
54
  + graph_output +
55
  "</div>"
 
49
  for i in range(len(tokenized) - 1) for j in range(i) if plot_data[i, j] > 0.5
50
  ]
51
  }]
52
+ graph_output = displacy.render(ex, style="dep", jupyter=True, manual=True, options={"compact": True})
53
  graph_output = ("<div style='max-width:100%; max-height:360px; overflow:auto'>"
54
  + graph_output +
55
  "</div>"