將輸入值中的數據拆分為 TensorArray 元素。
用法
tf.raw_ops.TensorArraySplitV3(
handle, value, lengths, flow_in, name=None
)
參數
-
handle
Tensor
類型為resource
。 TensorArray 的句柄。 -
value
一個Tensor
。要寫入 TensorArray 的連接張量。 -
lengths
Tensor
類型為int64
。長度向量,如何將值的行拆分為 TensorArray。 -
flow_in
Tensor
類型為float32
。強製正確鏈接操作的浮點標量。 -
name
操作的名稱(可選)。
返回
-
Tensor
類型為float32
。
假設 lengths
具有值
```(n0, n1, ..., n(T-1))```
並且value
有形狀
```(n0 + n1 + ... + n(T-1) x d0 x d1 x ...)```,
這將值拆分為具有 T 張量的 TensorArray。
TensorArray 索引 t 將是具有起始位置的值的子張量
```(n0 + n1 + ... + n(t-1), 0, 0, ...)```
並且有大小
```nt x d0 x d1 x ...```
相關用法
- Python tf.raw_ops.TensorArrayConcatV3用法及代碼示例
- Python tf.raw_ops.TensorScatterMax用法及代碼示例
- Python tf.raw_ops.TensorScatterSub用法及代碼示例
- Python tf.raw_ops.TensorScatterAdd用法及代碼示例
- Python tf.raw_ops.TensorScatterUpdate用法及代碼示例
- Python tf.raw_ops.TPUReplicatedInput用法及代碼示例
- Python tf.raw_ops.Tanh用法及代碼示例
- Python tf.raw_ops.TakeManySparseFromTensorsMap用法及代碼示例
- Python tf.raw_ops.TopKV2用法及代碼示例
- Python tf.raw_ops.Tile用法及代碼示例
- Python tf.raw_ops.TPUReplicatedOutput用法及代碼示例
- Python tf.raw_ops.Tan用法及代碼示例
- Python tf.raw_ops.TopK用法及代碼示例
- Python tf.raw_ops.Bitcast用法及代碼示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代碼示例
- Python tf.raw_ops.BatchMatMul用法及代碼示例
- Python tf.raw_ops.OneHot用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代碼示例
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代碼示例
- Python tf.raw_ops.GatherV2用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.raw_ops.TensorArraySplitV3。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。