-
Notifications
You must be signed in to change notification settings - Fork 446
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
input shape of nns #242
Comments
Here is my cfg file:[cfg_proto] [exp] [dataset1] lab:lab_name=lab_cd N_chunks=50 [dataset2] lab:lab_name=lab_cd N_chunks=5 [dataset3] lab:lab_name=lab_cd N_chunks=5 [data_use] [batches] [architecture1] gru_lay = 512,512,512,512 arch_lr = 0.0004 [architecture2] arch_lr=0.0004 [model] [forward] [decoding] |
It actually depends where this print comes from. It can be the sequence length (as sequence are ordered, smaller ones start first) or sequence_lenght * batch_size (often done before a linear layer to speedup the training). |
Thanks for your explanation |
I trained a model and find its input have shape of [194,1,40]. I think 1 is the batchsize, 40 is he feature size, but how 194 comes from?
Because I set the max_seq_length_train=1500, and max_seq_length_valid=1400
Thanks for help !
The text was updated successfully, but these errors were encountered: