Properties

Link copied to clipboard

Functions

Link copied to clipboard
abstract fun <T : DType, V> matrix(rows: Long, columns: Long, dtype: KClass<T>, content: TensorCreationScope<T, V>.() -> Tensor<T, V>): Tensor<T, V>
Link copied to clipboard
inline fun <T : DType, V> DataContextDsl.matrix(rows: Long, columns: Long, noinline content: TensorCreationScope<T, V>.() -> Tensor<T, V>): Tensor<T, V>
Link copied to clipboard
abstract fun <T : DType, V> scalar(value: V, dtype: KClass<T>): Tensor<T, V>
Link copied to clipboard
inline fun <T : DType, V> DataContextDsl.scalar(value: V): Tensor<T, V>
Link copied to clipboard
abstract fun <T : DType, V> tensor(dtype: KClass<T>, content: TensorFactoryContext<T, V>.() -> Tensor<T, V>): Tensor<T, V>
abstract fun <T : DType, V> tensor(dtype: KClass<T>, name: String, content: TensorFactoryContext<T, V>.() -> Tensor<T, V>): Tensor<T, V>
Link copied to clipboard
inline fun <T : DType, V> DataContextDsl.tensor(noinline content: TensorFactoryContext<T, V>.() -> Tensor<T, V>): Tensor<T, V>
inline fun <T : DType, V> DataContextDsl.tensor(name: String, noinline content: TensorFactoryContext<T, V>.() -> Tensor<T, V>): Tensor<T, V>
Link copied to clipboard
abstract fun <T : DType, V> vector(length: Long, dtype: KClass<T>, content: TensorCreationScope<T, V>.() -> Tensor<T, V>): Tensor<T, V>
Link copied to clipboard
inline fun <T : DType, V> DataContextDsl.vector(length: Long, noinline content: TensorCreationScope<T, V>.() -> Tensor<T, V>): Tensor<T, V>