TensorFlowOutput

abstract class TensorFlowOutput<T, TT : TType>(graph: Graph, output: Output<TT>) : TensorFlowTensor<T>

Lazy graph-based TensorFlow tensor. The tensor is actualized on call.

If the tensor is used for intermediate operations, actualizing it could impact performance.

Constructors

Link copied to clipboard
fun <TT : TType> TensorFlowOutput(graph: Graph, output: Output<TT>)

Functions

Link copied to clipboard
open override fun elements(): Sequence<Pair<IntArray, T>>
Link copied to clipboard
open operator override fun get(index: IntArray): T
Link copied to clipboard
open override fun <F : StructureFeature> getFeature(type: KClass<out F>): F?
Link copied to clipboard
open operator override fun set(index: IntArray, value: T)

Properties

Link copied to clipboard
open val dimension: Int
Link copied to clipboard
open val indices: ShapeIndexer
Link copied to clipboard
var output: Output<TT>
Link copied to clipboard
open override val shape: Shape

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Sources

Link copied to clipboard