
com.kotlinnlp.neuralparser.templates.supportstructure.singleprediction.SPStructureFactory.kt Maven / Gradle / Ivy
/* Copyright 2017-present The KotlinNLP Authors. All Rights Reserved.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
* ------------------------------------------------------------------*/
package com.kotlinnlp.neuralparser.templates.supportstructure.singleprediction
import com.kotlinnlp.neuralparser.templates.supportstructure.OutputErrorsInit
import com.kotlinnlp.simplednn.core.neuralnetwork.NeuralNetwork
import com.kotlinnlp.simplednn.core.neuralprocessor.feedforward.FeedforwardNeuralProcessor
import com.kotlinnlp.syntaxdecoder.modules.supportstructure.SupportStructureFactory
/**
* The factory of the decoding support structure for single prediction models.
*
* @param network the neural network used to score actions
* @param outputErrorsInit the default initialization of the [network] processor output errors
*/
class SPStructureFactory(
val network: NeuralNetwork,
val outputErrorsInit: OutputErrorsInit
) : SupportStructureFactory {
/**
* Build a new [SPSupportStructure].
*
* @return a new single-prediction decoding support structure
*/
override fun globalStructure() = SPSupportStructure(
processor = FeedforwardNeuralProcessor(this.network),
outputErrorsInit = this.outputErrorsInit)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy