필터 지우기
필터 지우기

what type of deep learning network?

조회 수: 9 (최근 30일)
MAB
MAB 2024년 7월 7일
편집: Matt J 2024년 7월 13일
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
Matt J
Matt J 2024년 7월 7일
편집: Matt J 2024년 7월 7일
Note that your network categories are not mutually exclusive. For example, a network can be both convolutional and feedforward, or both both convolutional and recurrent.

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2024년 7월 7일
It is a feedforward neural network.
  댓글 수: 2
MAB
MAB 2024년 7월 13일
thanks alot for your response
I would like to know what the difference between the Neural Network (with code nftool in matlab) and that inserted deep learning network .
Matt J
Matt J 2024년 7월 13일
편집: Matt J 2024년 7월 13일
nftool is not used for deep learning. It is used to build two-layer shallow networks only.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Function Approximation and Clustering에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by