The sigmoid package makes it easy to become familiar with the way neural networks work by demonstrating the key concepts using straightforward code examples.

Installation

The package can now be installed from CRAN using:

install.packages('sigmoid') # case sensitive!

Usage

After installation, the package can be loaded using:

library(sigmoid)

For information on using the package, please refer to the help files.

help('sigmoid')
help(package = 'sigmoid')

Additional Information

An overview of the changes is available in the NEWS file.

news(package='sigmoid')
## Changes in version 0.2.0:
##
##     o   add vignette
##
## Changes in version 0.1.0:
##
##     o   initial release
##
##     o   implement logistic and Gompertz
##
##     o   implement inverses (logit and inverse Gompertz)
##
##     o   implement SoftMax

Development

A development version can be installed at your own peril, using:

if (!require('devtools')) install.packages('devtools')
devtools::install_github("bquast/sigmoid")

Development takes place on the GitHub page, bugs can be filed on the Issues page.

Updated: