텐서플로우:: 작전:: 텐서어레이분할

#include <data_flow_ops.h>

입력 값의 데이터를 TensorArray 요소로 분할합니다.

요약

lengths 값을 취한다고 가정

(n0, n1, ..., n(T-1))

and that `value` has shape

(n0 + n1 + ... + n(T-1) x d0 x d1 x ...)```,

this splits values into a TensorArray with T tensors.

TensorArray index t will be the subtensor of values with starting position

```(n0 + n1 + ... + n(t-1), 0, 0, ...)