This package fits the models presented in the paper "Deep Learning with Functional Inputs". A number of functions are provided for the user to fit models,
prediction tasks, and to extract out relevant parameters. Tuning and crossvalidation functions are also provided.
Within these neural network architectures, we have the option to fit models that have inputs which are both scalars and functions. The form of a functional neuron in this model is:
A by-product of the method is a set of dynamic functional weights that can be visualized during the optimization process. This visualization leads to a greater interpretability of the relationship between the covariates and the response relative to vanilla neural networks.
* For more information on the methodology, read the paper here.
* For a more intuitive understanding, check out this article.
* Extensions of the approach are under way for functional outputs.
You can install FuncNN
from GitHub with the following commands:
library(devtools) install_github("b-thi/FuncNN")
Or through CRAN:
install.packages("FuncNN")
* Would also like to thank Matthew Reyers and Meyappan Subbaiah for their help.