提交 60e0121a authored 作者: Frederic's avatar Frederic

pep8

上级 548729f1
...@@ -783,7 +783,7 @@ def pydotprint(fct, outfile=None, ...@@ -783,7 +783,7 @@ def pydotprint(fct, outfile=None,
elif var.name or not compact: elif var.name or not compact:
g.add_edge(pd.Edge(astr, varstr, label=label)) g.add_edge(pd.Edge(astr, varstr, label=label))
# else: # else:
#don't add egde here as it is already added from the inputs. # don't add egde here as it is already added from the inputs.
if cond_highlight: if cond_highlight:
g.add_subgraph(c1) g.add_subgraph(c1)
...@@ -863,8 +863,8 @@ def pydotprint_variables(vars, ...@@ -863,8 +863,8 @@ def pydotprint_variables(vars,
dstr = dstr[:dstr.index('\n')] dstr = dstr[:dstr.index('\n')]
varstr = '%s %s' % (dstr, str(var.type)) varstr = '%s %s' % (dstr, str(var.type))
else: else:
#a var id is needed as otherwise var with the same type will be # a var id is needed as otherwise var with the same type will be
#merged in the graph. # merged in the graph.
varstr = str(var.type) varstr = str(var.type)
varstr += ' ' + str(len(var_str)) varstr += ' ' + str(len(var_str))
...@@ -1090,8 +1090,6 @@ def min_informative_str(obj, indent_level=0, ...@@ -1090,8 +1090,6 @@ def min_informative_str(obj, indent_level=0,
return rval return rval
def var_descriptor(obj, _prev_obs=None, _tag_generator=None): def var_descriptor(obj, _prev_obs=None, _tag_generator=None):
""" """
Returns a string, with no endlines, fully specifying Returns a string, with no endlines, fully specifying
...@@ -1154,6 +1152,7 @@ def var_descriptor(obj, _prev_obs=None, _tag_generator=None): ...@@ -1154,6 +1152,7 @@ def var_descriptor(obj, _prev_obs=None, _tag_generator=None):
return rval return rval
def position_independent_str(obj): def position_independent_str(obj):
if isinstance(obj, theano.gof.graph.Variable): if isinstance(obj, theano.gof.graph.Variable):
rval = 'theano_var' rval = 'theano_var'
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论