Is there any way to use "activations" function for a dlnetwork ?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hyeonjin kim
el 6 de Dic. de 2019
Comentada: hyeonjin kim
el 10 de Dic. de 2019
I would like to obtain an activation from a specific layer of a trained network of type 'dlnetwork' by using the 'activations' function, but it does not work resulting in the following error message.
"undefined function 'activations' for input argument of type 'dlnetwork' ."
Can I get around this problem ?
0 comentarios
Respuesta aceptada
Sourav Bairagya
el 10 de Dic. de 2019
The "activations" function supports only SeriesNetwork object or DAGNetwork object, but doesn't support 'dlnetwork' object.
However, you can use "forward" fucntion to compute activations from a specific layer of a 'dlnetwork' object.
[dlY1,..,dlYN] = forward(dlnet,dlX,'Outputs',layerNames)
You can leverage this link to know more details about the usage of "forward" function:
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!