The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
#Overview# This package enables the removal of training data from fitted R models while retaining predict functionality. The purged models are more portable as their memory footprints do not scale with the training sample size.
#Example Usage#
<- rnorm(1000)
x <- x + rnorm(1000)
y <- lm(y ~ x)
unpurged.model <- purge(unpurged.model)
purged.model object.size(unpurged.model)
object.size(purged.model)
#Installation#
if (!require(devtools)) install.packages("devtools")
:::install_github("massmutual/purge") devtools
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.