minibatchqueue function cannot generate the expected MiniBatchSize

2 ビュー (過去 30 日間)
Li Ea
Li Ea 2022 年 5 月 6 日
コメント済み: Li Ea 2022 年 5 月 9 日
As the title states, when I am using minibatchqueue, the data generated is not the batch size I specified, but the full batch.
Here's a very simple code to illustrate the problem:
t_list = dlarray(0:0.001:2,'CB');
mbq = minibatchqueue( ...
arrayDatastore(t_list), ...
MiniBatchFormat='CB',...
MiniBatchSize=200, ...
OutputEnvironment='auto');
next(mbq);
Running this code reveals two things that are not as expected:
I don't know what the problem is. Thanks to the technician for paying attention and giving an answer!

採用された回答

Joss Knight
Joss Knight 2022 年 5 月 6 日
You've asked your arrayDatastore to iterate over the rows because that's the default. So as far as arrayDatastore is concerned, you have one row, therefore the maximum number of times you can call read() is 1. Therefore minibatchqueue truncates the MiniBatchSize to 1 because you only have 1 observation.
If you want arrayDatastore to iterate over the columns you need to specify an IterationDimension of 2.
  1 件のコメント
Li Ea
Li Ea 2022 年 5 月 9 日
Thank you very much for your answer, my puzzle was solved perfectly!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

タグ

製品


リリース

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by