123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- # -*- coding: utf-8 -*-
- # Copyright 2017 Google Inc. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # ==============================================================================
- """Renders parse trees with Graphviz."""
- from __future__ import absolute_import
- from __future__ import division
- from __future__ import print_function
- import base64
- import warnings
- import pygraphviz
- def parse_tree_graph(sentence):
- """Constructs a parse tree graph.
- Args:
- sentence: syntaxnet.Sentence instance.
- Returns:
- HTML graph contents, as a string.
- """
- graph = pygraphviz.AGraph(directed=True, strict=False, rankdir="TB")
- for i, token in enumerate(sentence.token):
- node_id = "tok_{}".format(i)
- graph.add_node(node_id, label=token.word)
- if token.head >= 0:
- src_id = "tok_{}".format(token.head)
- graph.add_edge(
- src_id,
- node_id,
- label=token.label,
- key="parse_{}_{}".format(node_id, src_id))
- with warnings.catch_warnings():
- # Fontconfig spews some warnings, suppress them for now. (Especially because
- # they can clutter IPython notebooks).
- warnings.simplefilter("ignore")
- svg = graph.draw(format="svg", prog="dot")
- svg = unicode(svg, "utf-8")
- # For both inline and "new window" displays, we show the tokens with the
- # graph. (The sentence order of nodes is sometimes difficult to read.)
- image_and_text = u"<p><em>Text:</em> {}</p>{}".format(" ".join(
- token.word for token in sentence.token), svg)
- # We generate a base64 URI. This is not too big, but older browsers may not
- # handle it well.
- new_window_html = (u"<style type='text/css'>svg { max-width: 100%; }</style>"
- + image_and_text).encode("utf-8")
- as_uri = "data:text/html;charset=utf-8;base64,{}".format(
- base64.b64encode(new_window_html))
- return u"{}<p><a target='_blank' href='{}'>Open in new window</a></p>".format(
- image_and_text, as_uri)
|