Spaces:
Sleeping
Sleeping
update
Browse files
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(
|
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:")
|