featureinputlayer and convolution1dlayer
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
featureinputlayer matches fullyconnectedlayer but not matches convolution1dlayer
0 comentarios
Respuestas (1)
yanqi liu
el 21 de Mzo. de 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 comentarios
Ver también
Categorías
Más información sobre Image Data Workflows 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!