com.komputation.cuda.layers.forward.activation.CudaSigmoidLayer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of komputation Show documentation
Show all versions of komputation Show documentation
Komputation is a neural network framework for the JVM written in the Kotlin programming language.
package com.komputation.cuda.layers.forward.activation
import com.komputation.cuda.kernels.Kernel
class CudaSigmoidLayer internal constructor(
name : String? = null,
numberRows : Int,
numberColumns : Int,
createForwardKernel: () -> Kernel,
createBackwardKernel: () -> Kernel,
warpSize : Int,
maximumNumberThreadsPerBlock : Int) : BaseCudaEntrywiseActivationLayer(name, createForwardKernel, createBackwardKernel, numberRows, numberColumns, warpSize, maximumNumberThreadsPerBlock)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy