'Layer' object has no attribute 'activation_function'
See original GitHub issueHi,
Here is my setup:
from neupy import algorithms, layers, environment
environment.reproducible()
cgnet = algorithms.ConjugateGradient(
connection=[
layers.Layer(5),
layers.Sigmoid(100),
layers.Output(1),
],
shuffle_data = False,
show_epoch=300,
verbose=True,
search_method='golden',
update_function='fletcher_reeves',
addons=[algorithms.LinearSearch],
)
Do you know why I have following error:
[THEANO] Initializing Theano variables and functions. AttributeError: ‘Layer’ object has no attribute ‘activation_function’
Thanks.
Issue Analytics
- State:
- Created 7 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
'Activation' object has no attribute 'kernel' applying ... - GitHub
fit fails with the error AttributeError: 'Activation' object has no attribute 'kernel' . It appears that calling model.
Read more >'KerasLayer' object has no attribute 'layers' - Stack Overflow
This is unrelated to his question. You are just putting the keras layer to the global model and perform the model summary for...
Read more >tf.keras.layers.Dense | TensorFlow v2.11.0
Activation function to use. If you don't specify anything, no activation is applied (ie. "linear" activation: a(x) = x ).
Read more >The base Layer class - Keras
This is the class from which all layers inherit. A layer is a callable object that takes as input one or more tensors...
Read more >AttributeError: 'NoneType' object has no attribute 'op' - Reddit
w is the weight matrix · i represents the index for the neuron · j represents the index for the layer · C...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ve added an update and pushed it in the
issue_79_termios_error_25
branch. Could you please check whether it works for you?Yes, it works.
Thank you.
Kind regards, Denis Volokh
On Thu, Apr 14, 2016 at 1:03 AM, Yurii Shevchuk notifications@github.com wrote: