You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to plot the graph for a NN, in debug mode, but I get this error:
.../torch/install/share/lua/5.1/graph/graphviz.lua:167: dlsym(RTLD_DEFAULT, _fopen): symbol not found stack traceback: [C]: in function '__index' .../torch/install/share/lua/5.1/graph/graphviz.lua:167: in function 'graphvizFile' ...e/torch/install/share/lua/5.1/graph/graphviz.lua:195: in function 'dot' ./Source/NN.lua:125: in function 'opfunc'
The nn is this: question = nn.Identity()() local target = nn.Identity()(question) self.model = nn.gModule({question},{target})
The graph does plot when I use more complicated NNs (with two inputs, for example)
I installed graphviz through brew, nngraph through luarocks.
I am on OS X El Capitan v 10.11.4
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to plot the graph for a NN, in debug mode, but I get this error:
.../torch/install/share/lua/5.1/graph/graphviz.lua:167: dlsym(RTLD_DEFAULT, _fopen): symbol not found stack traceback: [C]: in function '__index' .../torch/install/share/lua/5.1/graph/graphviz.lua:167: in function 'graphvizFile' ...e/torch/install/share/lua/5.1/graph/graphviz.lua:195: in function 'dot' ./Source/NN.lua:125: in function 'opfunc'
The nn is this:
question = nn.Identity()() local target = nn.Identity()(question) self.model = nn.gModule({question},{target})
The graph does plot when I use more complicated NNs (with two inputs, for example)
I installed graphviz through brew, nngraph through luarocks.
I am on OS X El Capitan v 10.11.4
The text was updated successfully, but these errors were encountered: