Theano / Theano

Theano was a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. It is being continued as PyTensor: www.github.com/pymc-devs/pytensor
https://www.github.com/pymc-devs/pytensor
Other
9.9k stars 2.49k forks source link

theano.printing.pydotprint() TypeError: #3624

Closed Tveek closed 8 years ago

Tveek commented 8 years ago

pyhton3.4.4 my code is : import theano

a = theano.tensor.vector("a") b = a + a \ 10 f = theano.function([a], b) print(f([0, 1, 2])) [ 0. 2. 1026.] theano.printing.pydotprint(b, outfile="/home/prafly/desktop/symbolic_graph_unopt.png", var_with_name_simple=True)

error is TypeError: sequence item 0: expected str instance, bytes found

nouiz commented 8 years ago

This was fixed by gh-3633