Nothing
#'@title Conv1D
#'@description Creates a time series prediction object that uses the Conv1D.
#' It wraps the pytorch library.
#'@param preprocess normalization
#'@param input_size input size for machine learning model
#'@param epochs maximum number of epochs
#'@return a `ts_conv1d` object.
#'@examples
#'#Use the same example of ts_mlp changing the constructor to:
#'model <- ts_conv1d(ts_norm_gminmax(), input_size=4, epochs = 10000L)
#'@import reticulate
#'@export
ts_conv1d <- function(preprocess = NA, input_size = NA, epochs = 10000L) {
obj <- ts_regsw(preprocess, input_size)
obj$channels <- 1
obj$epochs <- epochs
class(obj) <- append("ts_conv1d", class(obj))
return(obj)
}
#'@export
do_fit.ts_conv1d <- function(obj, x, y) {
reticulate::source_python(system.file("python", "ts_conv1d.py", package = "daltoolbox"))
if (is.null(obj$model))
obj$model <- ts_conv1d_create(obj$channels, obj$input_size)
df_train <- as.data.frame(x)
df_train$t0 <- as.vector(y)
obj$model <- ts_conv1d_fit(obj$model, df_train, obj$epochs, 0.001)
return(obj)
}
#'@export
do_predict.ts_conv1d <- function(obj, x) {
reticulate::source_python(system.file("python", "ts_conv1d.py", package = "daltoolbox"))
X_values <- as.data.frame(x)
X_values$t0 <- 0
prediction <- ts_conv1d_predict(obj$model, X_values)
prediction <- as.vector(prediction)
return(prediction)
}
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.