Skip to content
pauldog edited this page Dec 29, 2017 · 24 revisions

This is a python visual programming tool based on tensorflow. It's in the early stages. The idea is to wrap tensorflow in a visual programming GUI so that you can play around with it more easily. The code is a bit messy so I'll have to refactor it at some point.

screenshot

You will need to install tensorflow and some other libraries. It uses python2.

Starting

To run it use

python2 start.py

Tips


To create constants or variables type the value in the input box. Examples are:

3.2423

[1,2],[3,4]

You can also put in python expressions. So to create a 100x100 matrix, try one of these:

np.zeros([100,100])

np.full([100,100],0.2)

Then click on constant, variable or sometimes if you need a non-tensorflow value list.

To create new nodes, you can select one of the common ones like add or multiply or choose one from the drop down lists.

screenshot

Clone this wiki locally