We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9258b2 commit ea0915dCopy full SHA for ea0915d
models/feedforward.py
@@ -19,7 +19,7 @@ def create_model(self, X=None, y=None):
19
num_samples, self.num_out = Y.shape
20
21
model_input = theano.shared(np.zeros(shape=(1, self.num_pred)))
22
- model_output = theano.shared(np.zeros(self.num_out))
+ model_output = theano.shared(np.zeros(shape=(1,self.num_out)))
23
24
self.shared_vars = {
25
'model_input': model_input,
0 commit comments