0
theano/lazanya kullanarak bir CNN uygulamaya çalışıyorum. Nöral bir ağ kurdum ama bunu mevcut durumla nasıl eğiteceğimi anlayamıyorum.Theano/lazanya ile konvolüsyonel sinir ağını eğitin
Ağın çıkışını, giriş olarak current_states
ile almaya çalışıyorum.
theano.compile.function_module.UnusedInputError: theano.function was asked to create a function computing outputs given certain inputs, but the provided input variable at index 0 is not part of the computational graph needed to compute the outputs: inputs.
To make this error into a warning, you can pass the parameter on_unused_input='warn' to theano.function. To disable it completely, use on_unused_input='ignore'.
Neden current_states kullanılmaz :
train = theano.function([input_var], lasagne.layers.get_output(l.out))
output = train(current_states)
Ancak bu hatayı alıyorum?
Modelin çıktısını current_states üzerinde almak istiyorum. Bunu nasıl yaparım?