Clear Filters
Clear Filters

Add a dropout layer to a narxnet

1 view (last 30 days)
Elieser Ernesto
Elieser Ernesto on 23 Jan 2024
Commented: Elieser Ernesto on 23 Jan 2024
Hello everyone
Once I create a narxnet (for example thisone with three layers and 10 neurons eachone: net = narxnet(1:2,1:2, [10 10 10],'open', 'trainlm'))
How can I add a dropout layer to it?
Thanks in advance.

Answers (1)

Rishi
Rishi on 23 Jan 2024
Hi Elieser,
I understand from your query that you want to know how to add a dropout layer to 'narnet' neural network.
The 'narxnet' function does not provide an option to add dropout layer directly. However, you can add the dropout by defining a custom transfer function to one of the layers. Details on how to create a custom transfer function is addressed in the following MATLAB Answer:
Hope this helps!
  1 Comment
Elieser Ernesto
Elieser Ernesto on 23 Jan 2024
Thank you for your answer Rishi
Could you explain a little bit how the transfer function works?
On one hand I have the narxnet, on the other the new layer: What does the function transfer? Is it the new layer the variable 'mytf'? How does it knows what network am I refering to?
function add_trfcn(fname)
open_system('neural');
open_system('neural/Transfer Functions');
set_param('neural','Lock','off')
add_block('simulink/User-Defined Functions/Interpreted MATLAB Function',['neural/Transfer' char(13) 'Functions/',fname], 'matlabfcn',fname,'name',fname)
Thanks in advance

Sign in to comment.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!