张量流数据集ops中名为other_arguments的输入是什么意思?

时间:2019-04-10 11:26:11

标签: tensorflow tensorflow-datasets

这是MapDataset操作的定义

REGISTER_OP("MapDataset")
    .Input("input_dataset: variant")
    .Input("other_arguments: Targuments")
    .Output("handle: variant")
    .Attr("f: func")
    .Attr("Targuments: list(type) >= 0")
    .Attr("output_types: list(type) >= 1")
    .Attr("output_shapes: list(shape) >= 1")
    .Attr("use_inter_op_parallelism: bool = true")
    .SetShapeFn(shape_inference::ScalarShape);

other_arguments是什么意思?我在Tensorboard上只能看到一个名为input_dataset

的输入。

other_arguments用于初始化captured_func,它似乎是必需参数。

此输入集何时何地设置?

0 个答案:

没有答案