R/spnn-internal.R

Defines functions .spnn.create .cspnn.create

.spnn.create <- function(){ # create empty list for spnn
  
  nn <- list(model = "Scale Invariant Probabilistic Neural Network", 
             set = NULL)
  
  return(nn)
}

.cspnn.create <- function(){ # create empty list for cspnn
  
  nn <- list(model = "Condensed Scale Invariant Probabilistic Neural Network",
             set = NULL)
  
  return(nn)
}

Try the spnn package in your browser

Any scripts or data that you put into this service are public.

spnn documentation built on Jan. 9, 2020, 1:06 a.m.