| as_LSTM_X | R Documentation |
Features (X) data format for LSTM
as_LSTM_X(x, timesteps = 1L)
x |
A feature data set, usually a matrix or data frame, returned by |
timesteps |
Number of timesteps; stands for the number of different periods within one sample (record) of the result, the resampled feature matrix |
A three-dimensional array of the resampled feature matrix x needed within Tensorflow for recurrent neural networks, e.g. LSTM.
dimension: Samples (s) = Number of records
dimension: Timesteps (t) = Number of different periods within one record
dimension: Features (f) = Number of features within a sequence of a period
Note: A 3D-array with dimensions (s x t x f) can be interpret as f (s x t)-matrices.
get_LSTM_XY, as_LSTM_Y, as_tensor_3d.
Other Recurrent Neural Network (RNN):
as_LSTM_Y(),
as_LSTM_data_frame(),
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.