Bonjour tout le monde
j'ai voulu savoir comment je fais pour ajouter des "Di" dans la couche d'entrée d'un tdnn. ici avec newtdnn(..) ca permet d'ajouter des Di dans les couches cachées et dans la couche de sortie et non pas dans la couche d'entrée
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8 net = newdtdnn(PR,[D1 D2...DN1],[S1 S2...SNl],{TF1 TF2...TFNl},BTF,BLF,PF) PR - Rx2 matrix of min and max values for R input elements. % Di - Delay vector for the ith layer. % Si - Size of ith layer, for Nl layers. % TFi - Transfer function of ith layer, default = 'tansig'. % BTF - Backprop network training function, default = 'trainlm'. % BLF - Backprop weight/bias learning function, default = 'learngdm'. % PF - Performance function, default = 'mse'.
Merci d'avance
Partager