Reinforcement Learning experience buffer length and parallelisation toolbox
2 ビュー (過去 30 日間)
古いコメントを表示
Tech Logg Ding
2020 年 12 月 2 日
編集済み: Emmanouil Tzorakoleftherakis
2020 年 12 月 3 日
When parallelisation is used when training a DDPG agent with the following settings:
trainOpts.UseParallel = true;
trainOpts.ParallelizationOptions.Mode = 'async';
trainOpts.ParallelizationOptions.StepsUntilDataIsSent = -1;
trainOpts.ParallelizationOptions.DataToSendFromWorkers = 'Experiences';
Does the the parallel simulations have their own experience buffer? This could take up more memory hence I am hoping that only one experience buffer is stored to update the critic network.
From the documentations, it seems like there will only be one experience buffer as the experiences are sent back to the host.
0 件のコメント
採用された回答
Emmanouil Tzorakoleftherakis
2020 年 12 月 3 日
編集済み: Emmanouil Tzorakoleftherakis
2020 年 12 月 3 日
Hello,
There is one big experience buffer on the host, the size of which you determine as usual in your agent options. Each worker has a much smaller buffer to collect experiences until you reach "StepsUntilDataIsSent".
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Training and Simulation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!