Network

object Network
class Object
trait Matchable
class Any

Value members

Concrete methods

def errors(input: LazyList[Double], expectedOutput: LazyList[Double], inParallel: Boolean)(network: Network): LazyList[Double]
def fit(learningRate: Double, input: LazyList[Double], expectedOutput: LazyList[Double], inParallel: Boolean)(network: Network): Network
def init(layerSizes: LazyList[Int], activationF: Int => Activation, weightInitF: Int => Double): Network
def output(input: LazyList[Double], inParallel: Boolean)(network: Network): LazyList[Double]
def realize(network: Network): Network