From: Charles on
Hi all,

I am using the 'newff' function to train a network. Basically, my code looks like this:

net=newff(input, output, 2);
net=train(net, input, output);
sim(net,test_data)
save('my_model','net');

the problem I have is that when I load the saved 'model', and simulate with the same test_data, I have weird result, which if everything is right, I should receive the same result as that generated before the data is saved right? Please I need help with this. Thanks.
Charles/
From: Greg Heath on
On Jun 1, 4:10 pm, "Charles " <nkwos...(a)yahoo.com> wrote:
> Hi all,
>
> I am using the 'newff' function to train a network. Basically, my code looks like this:
>
> net=newff(input, output, 2);
> net=train(net, input, output);
> sim(net,test_data)
> save('my_model','net');
>
> the problem I have is that when I load the saved 'model', and simulate with the same >test_data, I have weird result, which if everything is right, I should receive the same >result as that generated before the data is saved right?

Right.

>Please I need help with this.

Yes you do. What do you suggest?

.... Giving up more details?

Nah. That makes it tooo easy.

Greg