The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
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[@]dogado.de.
codez fits a seq2seq encoder-decoder model for
time-feature forecasting. Version 2.0 moves the neural backend from
TensorFlow/Keras to torch, keeps the original
codez() entry point, and adds a more R-native workflow
through fit_codez().
torch is used at fit time:
install.packages("torch")
torch::install_torch()library(codez)
model <- fit_codez(
amzn_aapl_fb[, -1],
dates = as.Date(amzn_aapl_fb$Date),
seq_len = 20,
n_samp = 3,
n_windows = 5,
control = codez_control(epochs = 50, batch_size = 32, n_sim = 1000)
)
forecast <- predict(model)
summary(model)
plot(model)fit_codez() returns a codez_model with
tidy forecasts, baseline backtests, and S3 methods.torch at runtime.codez() still returns the legacy list shape:
history, best_model, and
time_log.predict(model) returns one row per feature and horizon,
with forecast summary columns such as min, interval
quantiles, 50%, mean, sd, and
pred_scores.
The legacy result is still available at:
model$resultThese 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.
Health stats visible at Monitor.