as_LSTM_data_frame | R Documentation |
Recreation of a data frame based on preformatted X and Y data sets
as_LSTM_data_frame(x, y, xnames, ynames, timesteps = 1L, suffix = "_t")
x |
A feature data set, usually a matrix or data frame, returned by |
y |
An outcome data set, usually a vector, matrix or data frame, returned by |
xnames |
Names of the features. |
ynames |
Names of the outcomes. |
timesteps |
Number of timesteps; stands for the number of different periods within one sample (record) of the result, the resampled feature matrix |
suffix |
The suffix for every feature per timestep or period. |
A data frame with outcome column(s) and a further resampled feature matrix. The feature matrix within this data frame has the following forward oriented form: x1(t1), x1(t2), x1(t3)...x2(t1), x2(t2), x2(t3)...x3(t1), x3(t2), x3(t3)...
get_LSTM_XY
.
Other Recurrent Neural Network (RNN):
as_LSTM_X()
,
as_LSTM_Y()
,
as_LSTM_period_outcome()
,
as_lag()
,
as_timesteps()
,
build_LSTM()
,
fit_LSTM()
,
get_LSTM_XY()
,
get_period_shift()
,
load_weights_ANN()
,
predict_ANN()
,
save_weights_ANN()
,
start_invert_differencing()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.