ModuleParameter

Types

Link copied to clipboard
data class BiasParameter<T : DType, V>(val name: String, backingValue: Tensor<T, V>, val trainable: Boolean = true) : ModuleParameter<T, V>
Link copied to clipboard
data class WeightParameter<T : DType, V>(val name: String, backingValue: Tensor<T, V>, val trainable: Boolean = true) : ModuleParameter<T, V>

Properties

Link copied to clipboard
abstract val name: String
Link copied to clipboard
Link copied to clipboard
abstract var value: Tensor<T, V>