1,409 views

1 Answer

0 0 votes

Deep learning algorithms can be segregated into four different branches based on their area of research and application:

General deep learning algorithms: Densely-connected layers or fully-connected networks

Sequence models: Recurrent Neural Networks (RNN), Long Short Term Memory (LSTM) Networks, Gated Recurrent Units, etc

Spatial data models: Convolutional Neural Networks (CNN), Generative Adversarial Networks (GAN)

Other algorithms: Unsupervised Learning, Reinforcement Learning (RL), Sparse Encoding, etc

Related questions

1 1 vote
1 1 answer
789
789 views
3 3 votes
1 answers 1 answer
6.3k
6.3k views
SinaML asked Sep 3, 2018
6,316 views
Could you please show a summary of all the branches in Machine Learning?
4 4 votes
0 0 answers
1.0k
1.0k views
askdatascience asked Aug 26, 2018
1,015 views
I am wondering if anyone can suggest the best resources for studying Deep Learning?
1 1 vote
0 0 answers
457
457 views
1 1 vote
1 answers 1 answer
3.6k
3.6k views
tofighi asked Oct 30, 2018
3,565 views
Both of the batch size and number of epochs are integer values and seem to do the same thing in Stochastic gradient descent. What are these two hyper-parameters of this l...