tf.create_partitioned_variables(
shape,
slicing,
initializer,
dtype=tf.dtypes.float32,
trainable=True,
collections=None,
name=None,
reuse=None
)
Defined in tensorflow/python/ops/partitioned_variables.py
.
Create a list of partitioned variables according to the given slicing
. (deprecated)
Currently only one dimension of the full variable can be sliced, and the full variable can be reconstructed by the concatenation of the returned list along that dimension.
Args:
shape
: List of integers. The shape of the full variable.slicing
: List of integers. How to partition the variable. Must be of the same length asshape
. Each value indicate how many slices to create in the corresponding dimension. Presently only one of the values can be more than 1; that is, the variable can only be sliced along one dimension.For convenience, The requested number of partitions does not have to divide the corresponding dimension evenly. If it does not, the shapes of the partitions are incremented by 1 starting from partition 0 until all slack is absorbed. The adjustment rules may change in the future, but as you can save/restore these variables with different slicing specifications this should not be a problem.
initializer
: ATensor
of shapeshape
or a variable initializer function. If a function, it will be called once for each slice, passing the shape and data type of the slice as parameters. The function must return a tensor with the same shape as the slice.dtype
: Type of the variables. Ignored ifinitializer
is aTensor
.trainable
: If True also add all the variables to the graph collectionGraphKeys.TRAINABLE_VARIABLES
.collections
: List of graph collections keys to add the variables to. Defaults to[GraphKeys.GLOBAL_VARIABLES]
.name
: Optional name for the full variable. Defaults to"PartitionedVariable"
and gets uniquified automatically.reuse
: Boolean orNone
; ifTrue
and name is set, it would reuse previously created variables. ifFalse
it will create new variables. ifNone
, it would inherit the parent scope reuse.
Returns:
A list of Variables corresponding to the slicing.
Raises:
ValueError
: If any of the arguments is malformed.