tensorflow::ops::Fill

tensorflow::ops::Fill

#include <array_ops.h>

Creates a tensor filled with a scalar value.

Summary

This operation creates a tensor of shape dims and fills it with value.

For example:

``` Output tensor has shape [2, 3].

fill([2, 3], 9) ==> [[9, 9, 9] [9, 9, 9]] ```

Arguments:

  • scope: A Scope object
  • dims: 1-D. Represents the shape of the output tensor.
  • value: 0-D (scalar). Value to fill the returned tensor.

(numpy) Equivalent to np.full

Returns:

Constructors and Destructors
Fill(const ::tensorflow::Scope & scope, ::tensorflow::Input dims, ::tensorflow::Input value)
Public attributes
output
Public functions
node() const
::tensorflow::Node *
operator::tensorflow::Input() const
operator::tensorflow::Output() const

Public attributes

output

::tensorflow::Output output

Public functions

Fill

 Fill(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input dims,
  ::tensorflow::Input value
)

node

::tensorflow::Node * node() const 

operator::tensorflow::Input

operator::tensorflow::Input() const 

operator::tensorflow::Output

operator::tensorflow::Output() const 

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/fill.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部