Open vishiswoz opened 7 years ago
Yup. That's an issue :D We were discussing it previously, and this is one of reasons to implement synaptic 2.
Is there any temporary fix I can implement? Cause it's from my understanding that synaptic 2 will take a while to be implemented.
I'm afraid I cannot give you any good solution right now, but as far as I remember it should not be that complicated, I've been trying to implement some dirty fix for that some time ago and it was quite simple.
Is there any way I can create a new Architect.Perceptron
from the Network
I have and just copy over any key/data I need to? To clarify, my Architect.Perceptron
doesn't use a trainer or any propagation.
Bump
Current I'm doing this
var network = new Architect.Perceptron(inputs, 5, 5, outputs);
Then I do
var networkJSON = network.toJSON()
Except now I can't do
var originalNetwork = Network.fromJSON(networkJSON)
Because
originalNetwork
is aNetwork
and I want aArchitect
, or will there be no differences between the 2? Sorry if this seems like a stupid question, I'm new to this stuff.