텐서플로우:: 작전:: 텐서어레이:: 속성

#include <data_flow_ops.h>

TensorArray 의 선택적 속성 설정자.

요약

공개 속성

clear_after_read_ = true
bool
dynamic_size_ = false
bool
element_shape_ = ::tensorflow::PartialTensorShape()
PartialTensorShape
identical_element_shapes_ = false
bool
tensor_array_name_ = ""
StringPiece

공공 기능

ClearAfterRead (bool x)
TF_MUST_USE_RESULT Attrs
true(기본값)인 경우 TensorArray 의 Tensor는 읽은 후 지워집니다.
DynamicSize (bool x)
TF_MUST_USE_RESULT Attrs
TensorArray 에 대한 쓰기가 크기 증가를 허용하는지 여부를 결정하는 부울입니다.
ElementShape (PartialTensorShape x)
TF_MUST_USE_RESULT Attrs
알려진 경우 요소의 예상 모양입니다.
IdenticalElementShapes (bool x)
TF_MUST_USE_RESULT Attrs
true(기본값은 false)인 경우 TensorArray 의 모든 요소는 동일한 모양을 가질 것으로 예상됩니다.
TensorArrayName (StringPiece x)
TF_MUST_USE_RESULT Attrs
임시 tensor_array 리소스에 사용되는 이름을 재정의합니다.

공개 속성

Clear_after_read_

bool tensorflow::ops::TensorArray::Attrs::clear_after_read_ = true

동적_크기_

bool tensorflow::ops::TensorArray::Attrs::dynamic_size_ = false

요소_모양_

PartialTensorShape tensorflow::ops::TensorArray::Attrs::element_shape_ = ::tensorflow::PartialTensorShape()

동일_요소_모양_

bool tensorflow::ops::TensorArray::Attrs::identical_element_shapes_ = false

텐서_배열_이름_

StringPiece tensorflow::ops::TensorArray::Attrs::tensor_array_name_ = ""

공공 기능

읽기 후 지우기

TF_MUST_USE_RESULT Attrs tensorflow::ops::TensorArray::Attrs::ClearAfterRead(
  bool x
)

true(기본값)인 경우 TensorArray 의 Tensor는 읽은 후 지워집니다.

이렇게 하면 다중 읽기 의미 체계가 비활성화되지만 메모리를 조기에 해제할 수 있습니다.

기본값은 true입니다.

동적 크기

TF_MUST_USE_RESULT Attrs tensorflow::ops::TensorArray::Attrs::DynamicSize(
  bool x
)

TensorArray 에 대한 쓰기가 크기 증가를 허용하는지 여부를 결정하는 부울입니다.

기본적으로 이는 허용되지 않습니다.

기본값은 거짓

요소모양

TF_MUST_USE_RESULT Attrs tensorflow::ops::TensorArray::Attrs::ElementShape(
  PartialTensorShape x
)

알려진 경우 요소의 예상 모양입니다.

TensorArray 요소의 모양을 검증하는 데 사용됩니다. 이 모양이 완전히 지정되지 않은 경우 크기가 0인 TensorArray를 수집하는 것은 오류입니다.

기본값은

동일한요소모양

TF_MUST_USE_RESULT Attrs tensorflow::ops::TensorArray::Attrs::IdenticalElementShapes(
  bool x
)

true(기본값은 false)인 경우 TensorArray 의 모든 요소는 동일한 모양을 가질 것으로 예상됩니다.

이를 통해 쓰기 시 일관된 모양을 동적으로 확인하고 element_shape 속성이 완전히 정의되지 않은 경우에도 스택에 올바른 모양의 0 텐서를 채울 수 있는 것과 같은 특정 동작이 허용됩니다.

기본값은 거짓

텐서 배열 이름

TF_MUST_USE_RESULT Attrs tensorflow::ops::TensorArray::Attrs::TensorArrayName(
  StringPiece x
)

임시 tensor_array 리소스에 사용되는 이름을 재정의합니다.

기본값은 ' TensorArray ' 작업의 이름입니다(고유함이 보장됨).

기본값은 ""입니다.