1

から: https://github.com/Microsoft/CNTK/wiki/CNTKTextFormat-Reader

「シーケンス ID は数値です。省略できます。省略した場合、行番号がシーケンス ID として使用されます。」

次のようなソースからミニバッチを作成したとします。

マップ ファイル:

|labels 0 0 0 1 0 0 |features 3
|labels 0 0 0 0 0 1 |features 7
|labels 1 0 0 0 0 0 |features 1
|labels 1 0 0 0 0 0 |features 9
|labels 1 0 0 0 0 0 |features 4

コード:

from cntk import Trainer, StreamConfiguration, text_format_minibatch_source, learning_rate_schedule, UnitType

mb_source = text_format_minibatch_source('test_map2.txt', [
    StreamConfiguration('features', 1),
    StreamConfiguration('labels', 6)])

test_minibatch = mb_source.next_minibatch(5)

ミニバッチからシーケンス ID を取得するにはどうすればよいですか?

4

1 に答える 1