allocate_output函数是否在tensorflow中将值设置为默认值为零?

时间:2017-08-23 18:47:12

标签: tensorflow

在tensorflow中,我们应该使用此代码来分配输出张量:

    Tensor* output_tensor = NULL;
    OP_REQUIRES_OK(context, context->allocate_output(0, TensorShape({depth, height, width, num_classes}), 
                                                     &output_tensor));

我的问题是,此分配是否会将此输出张量中的值设置为零?或者我们是否需要手动将张量填充为零?

0 个答案:

没有答案