Description Usage Arguments Examples
Transforms original predictors (x) into new predictors (x_new) using a trained RBM model object.
| 1 | transform_x(model_rbm, x)
 | 
| model_rbm | A trained RBM object from train_rbm(...). | 
| x | Original predictors. | 
| 1 2 3 | ## Extracts hidden features and create new predictors.
model_rbm <- train_rbm(x, n_features = 10)
x_new <- transform_x(model_rbm, x)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.