Which layer to choose - guideline #1038
Answered
by
LuluW8071
OneManShow0815
asked this question in
Q&A
-
How do I choose a layer when for machine learning. Or, for what purpose is which layer best suitable? |
Beta Was this translation helpful? Give feedback.
Answered by
LuluW8071
Aug 11, 2024
Replies: 2 comments 4 replies
-
@OneManShow0815 Can you give more context |
Beta Was this translation helpful? Give feedback.
2 replies
-
Hi LuluW8071, Thanks for the quick response. Regards |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Linear Layer for basic model or mid/final feature selector
Dropout layer for making our model unbiased towards training data only introducing non linearity
BatchNorm for stable (recenter and rescale with normlization) and fastertraining
CNN for image data(picture, audio)
RNNs for sequential(mostly textual and time-series) data
Transformer for text, images, videos, audios
Watch some vids and read research papers to get the concepts behind it