Is it possible to train LSTM Network without a Dataset?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Huzaifah Shamim
el 23 de Jul. de 2020
Editada: Huzaifah Shamim
el 27 de Jul. de 2020
In the following paper, they utilize Reinforcement Learning and within it, also use an LSTM network. On page 3, they say that they use some kind of loss function that allows the training of the LSTM network without a dataset. I was wondering how that could be possible? If someone could explain, I would greatly appreciate it.
0 comentarios
Respuesta aceptada
Emmanouil Tzorakoleftherakis
el 27 de Jul. de 2020
In the paper they mention "Although a readily available dataset is required to train an LSTM network, we devised an efficient way to tackle this challenge utilizing the experiences stored in the replay memory of the Q-network".
This is how training works with experience buffers in RL - you don't have data at the beginning, then you run simulations and store the data you collect in the experience buffer, which you are then using to train the policy. So the data is not "readily available" but you are still sing your experience buffer.
1 comentario
Huzaifah Shamim
el 27 de Jul. de 2020
Editada: Huzaifah Shamim
el 27 de Jul. de 2020
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep 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!