featureinputlayer and convolution1dlayer
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
featureinputlayer matches fullyconnectedlayer but not matches convolution1dlayer
0 Commenti
Risposte (1)
yanqi liu
il 21 Mar 2022
layers = [
featureInputLayer(100,'Name','input')
fullyConnectedLayer(5, 'Name','fc')
softmaxLayer('Name','sm')
classificationLayer('Name','classification')]
layers2 = [
featureInputLayer(100,'Name','input')
convolution1dLayer(50, 3,'Stride',1, 'Name','cnn1d')
fullyConnectedLayer(5, 'Name','fc')
softmaxLayer('Name','sm')
classificationLayer('Name','classification')]
4 Commenti
Vedere anche
Categorie
Scopri di più su Image Data Workflows in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!