library(methods)
#
# Constant
#
NEW_LINE <- '\n'
#
# Operators
#
'%!in%' <- function(x,y)!('%in%'(x,y))
#
# Classes
#
yan.neuronLogicalUnitInput <- setClass(
"yan.neuronLogicalUnitInput",
slots = c(
cutOff = "numeric"
)
)
#
# Generics
#
setGeneric("propagation", function(model, input, ...) {
standardGeneric("propagation")
}, signature = c('model', 'input'))
setGeneric("backpropagation", function(model, input, output, ...) {
standardGeneric("backpropagation")
}, signature = c('model', 'input'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.