scorelab / tensormap

TensorMap will be a web application that will allow the users to create machine learning algorithms visually. TensorMap will support reverse engineering of the visual layout to a Tensorflow implementation in preferred languages. The goal of the project is to let the beginners play with machine learning algorithms in Tensorflow without less background knowledge about the library.
Apache License 2.0
50 stars 85 forks source link

Two output node should give error #114

Open srivastava9 opened 4 years ago

srivastava9 commented 4 years ago

While making a neural network architecture, It should give an error when one tries to make two output node.

Screenshot from 2020-03-14 21-44-53

Right now it does not give any error.

@orionpax00 Need your update on this one also :)

vasudev13 commented 4 years ago

@srivastava9 , I think its okay to have multiple input and output nodes(as mentioned in #115). Francois Chollet, who is the creator of Keras, writes about them in his book Deep Learning with Python (Specifically Chapter 7: Advanced deep-learning best practices).

Moreover, Inception Networks and Residual Connections are examples of such non linear networks.

srivastava9 commented 4 years ago

True, But I guess we are not making such advance model right now,Anyway when it goes to backend it only accepts one input and output model right now.Therefore I opened this issue. @ivantha @orionpax00 need your suggestion :)