Training a Multisession Model And Applying To Multiple Different Mice #217
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
If you are planning to use the same embedding for another experiment (another mice), you must make sure that the number of channels (neurons) are the same. In the error message, it seems that you used 21 channels to train, but asked the model to work on only 12. A possible workaround could be to pad your data with zeroes before, so that in all cases you have the same number of channels. At least that is what I'm doing for now, and I am not entirely sure if it really works. |
Beta Was this translation helpful? Give feedback.
-
the best way to do this is to use |
Beta Was this translation helpful? Give feedback.
the best way to do this is to use
Adapt = true
; this takes a pretrained embedding and adapts the first input layer so it matches the neuron # appropriately.