what type of deep learning network?
    5 次查看(过去 30 天)
  
       显示 更早的评论
    
I would like to ask about what the type of deep learning network using to train a network with numerical features the matlab example exist here
it uses the layers
layers = [
    featureInputLayer(numFeatures,Normalization="zscore")
    fullyConnectedLayer(50)
    batchNormalizationLayer
    reluLayer
    fullyConnectedLayer(numClasses)
    softmaxLayer];
what the type of  this deep learning network?
I know that the types of deep learning network  are:
1-Feedforward Neural Networks (FNN)
2-Convolutional Neural Networks (CNN)
3-Recurrent Neural Networks (RNN)
4-Long Short-Term Memory Networks (LSTM)
5-Gated Recurrent Unit (GRU)
6-Autoencoders
7-Generative Adversarial Networks (GAN)
8-Deep Belief Networks (DBN) and etc
I think that deep learning network is Feedforward Neural Networks (FNN).
if it true ?
I would like to know what the difference between the Neural Network (with code   nftool   in matlab)  and  that inserted deep learning network with the upbove code 
1 个评论
回答(1 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Modeling and Prediction with NARX and Time-Delay Networks 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

