LSTM with data sequence including NaN values
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
I am using LSTM training network but the training progress is not working and a blank loss plot is coming.
The datasequence is corresponding to a signal in time and it includes NaN values, even the validation dataset.
How to overcome this issue ? is it becuse of the NaN values.
I have to use NaN values to make sure all signals are at the same length for the sequenceInputLayer(numFeatures)
regards,
Mohanad
0 comentarios
Respuestas (1)
Dheeraj Singh
el 5 de Nov. de 2019
Too much padding can have negative impact on the network performance. To prevent the training process from adding too much padding, you can sort the training data by sequence length, and choose a mini-batch size such that the sequences in a mini-batch have similar length.
For more information refer to the following link:
2 comentarios
Dheeraj Singh
el 4 de Dic. de 2019
If you have only one feature, your sequence length would be 3400, 5000, and 3200 for the above data, respectively. It is difficult to comment on the dataset without any description, so if you could provide the dataset or some description about it, it can be more helpful in understanding the issue.
Ver también
Categorías
Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!