1

来自:https ://github.com/Microsoft/CNTK/wiki/CNTKTextFormat-Reader

“Sequence 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

2

此序列 ID 是内部编号,当前未公开。请使用此线程的建议。

如何从小批量获取原始索引?

于 2017-01-09T21:29:54.347 回答