nielklug commited on
Commit
c4029db
·
1 Parent(s): 15697ac
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -36,8 +36,9 @@ if text:
36
  # Convert the bracket parse tree into an NLTK Tree
37
 
38
  # t = Tree.fromstring(' '.join(word.split('-')[0] for word in parse_tree.split()))
 
39
 
40
- tree_svg = TreePrettyPrinter(parse_tree).svg(nodecolor='black', leafcolor='black', funccolor='black')
41
 
42
  col1 = st.columns(1)[0]
43
  col1.header("POS tagging result:")
 
36
  # Convert the bracket parse tree into an NLTK Tree
37
 
38
  # t = Tree.fromstring(' '.join(word.split('-')[0] for word in parse_tree.split()))
39
+ t = Tree.fromstring(parse_tree)
40
 
41
+ tree_svg = TreePrettyPrinter(t).svg(nodecolor='black', leafcolor='black', funccolor='black')
42
 
43
  col1 = st.columns(1)[0]
44
  col1.header("POS tagging result:")