GreNait / technical-thesis

This thesis contains all the work related to it. Python code, models, documentation etc.
0 stars 0 forks source link

Research parameters: #19

Open GreNait opened 4 years ago

GreNait commented 4 years ago
GreNait commented 4 years ago

Flatten() needs to be done before have fully conected Layers but after a convolution. Flatten() makes a threediemsnional array flat for a vecctorisation. A model does not need the 3dimensional structure, convolutions do. See: https://stackoverflow.com/questions/44572141/why-do-we-flatten-the-data-before-we-feed-it-into-tensorflow

GreNait commented 4 years ago

A guide to activation functions https://missinglink.ai/guides/neural-network-concepts/7-types-neural-network-activation-functions-right/

GreNait commented 4 years ago

It appears, that it is very important to not have an activation function at the last layer. I used for the small model test an softmax at the end. The accuracy was than stuck to 33%.