Nd4jArrayStructure

sealed class Nd4jArrayStructure<T> : MutableNDStructure<T>

Represents a NDStructure wrapping an INDArray object.

Parameters

T

the type of items.

Functions

elements
Link copied to clipboard
open override fun elements(): Sequence<Pair<IntArray, T>>
equals
Link copied to clipboard
abstract operator override fun equals(other: Any?): Boolean
get
Link copied to clipboard
abstract operator fun get(index: IntArray): T
getFeature
Link copied to clipboard
open fun <T : Any> getFeature(type: KClass<T>): T?
hashCode
Link copied to clipboard
abstract override fun hashCode(): Int
set
Link copied to clipboard
abstract operator fun set(index: IntArray, value: T)
toString
Link copied to clipboard
open fun toString(): String

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