Nothing
#' @title sigmoid activation function
#' @param x a real number
#' @return sigmoid value
#' @examples sigmoid(10)
#' @keywords methods models
#' @export
sigmoid<- function(x) {
return(1/(1+(exp(-x))))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.