Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to plot byprain neural network structure

Tags:

python

pybrain

I am using pybrain to build neural network. Sometimes a graphical representation of the situation would be very useful.

Is it possible to plot the structure of a neural network generated using pybrain?

like image 553
Donbeo Avatar asked May 06 '26 10:05

Donbeo


1 Answers

I think the original questioner was probably looking for something like this (as I am, though without the animation): http://www.codeproject.com/KB/dotnet/predictor/learn.gif

And I think this is more or less answered in this post: How to visualize a neural network

"More or less" because it would be nice to see the cell reference (A0, A1, A2, B0, etc, or whatever) inside each circle.

But I'm a total beginner in Python and in neural networks, feel free to correct me if I'm wrong.

  • Guy
like image 51
Guy Avatar answered May 07 '26 23:05

Guy