Layer

object Layer
class Object
trait Matchable
class Any

Value members

Concrete methods

def backPropagated(learningRate: Double, input: LazyList[Double], outputWithErrors: LazyList[(Double, Double)], inParallel: Boolean)(layer: Layer): (LazyList[Double], Layer)
def init(inputSize: Int, outputSize: Int, activation: Activation, weightInitF: => Double): Layer
def output(input: LazyList[Double], inParallel: Boolean)(layer: Layer): LazyList[Double]
def realize(layer: Layer): Layer

Extensions

Extensions

extension (lazyList: LazyList[A])
def pmap[A](f: A => B): LazyList[B]