Nd4jArrayStructure

sealed class Nd4jArrayStructure<T> : MutableStructureND<T>

Represents a StructureND wrapping an INDArray object.

Parameters

T

the type of items.

Functions

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

Properties

dimension
Link copied to clipboard
open val dimension: Int
ndArray
Link copied to clipboard
abstract val ndArray: INDArray
The wrapped INDArray.
shape
Link copied to clipboard
open override val shape: IntArray

Sources

jvm source
Link copied to clipboard