next
説明
は、[x1,...,xN]
= next(mbq
)minibatchqueue
オブジェクト mbq
を使用して準備されたデータのミニバッチを返します。この関数は、mbq
の出力の数と同じ数の変数を返します。
例
ミニバッチの取得
minibatchqueue
オブジェクトを作成し、ミニバッチを取得します。
データストアから minibatchqueue
オブジェクトを作成します。MiniBatchSize
プロパティを 2
に設定します。
auimds = augmentedImageDatastore([100 100],digitDatastore); mbq = minibatchqueue(auimds,MiniBatchSize=2,MiniBatchFormat={'SSBC','BC'})
mbq = minibatchqueue with 2 outputs and properties: Mini-batch creation: MiniBatchSize: 2 PartialMiniBatch: 'return' MiniBatchFcn: 'collate' PreprocessingEnvironment: 'serial' Outputs: OutputCast: {'single' 'single'} OutputAsDlarray: [1 1] MiniBatchFormat: {'SSBC' 'BC'} OutputEnvironment: {'auto' 'auto'}
next
を使用してミニバッチを取得します。mbq
は 2 つの出力をもちます。
[X,Y] = next(mbq);
X
は、データストアの 2 つのイメージを含むミニバッチです。Y
にはそれらのイメージの分類ラベルが格納されています。ミニバッチ変数のサイズと形式を確認します。
size(X) dims(X) size(Y) dims(Y)
ans = 1×4 100 100 1 2 ans = 'SSCB' ans = 1×2 1 2 ans = 'CB'
入力引数
mbq
— ミニバッチ キュー
minibatchqueue
オブジェクト
ミニバッチ キュー。minibatchqueue
オブジェクトとして指定します。
出力引数
バージョン履歴
R2020b で導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)