layer_input_from_dataset | R Documentation |
DEPRECATED: Use keras3::layer_feature_space()
instead.
layer_input_from_dataset(dataset)
dataset |
a TensorFlow dataset or a data.frame |
Create a list ok Keras input layers that can be used together
with keras::layer_dense_features()
.
a list of Keras input layers
## Not run:
library(tfdatasets)
data(hearts)
hearts <- tensor_slices_dataset(hearts) %>% dataset_batch(32)
# use the formula interface
spec <- feature_spec(hearts, target ~ age + slope) %>%
step_numeric_column(age, slope) %>%
step_bucketized_column(age, boundaries = c(10, 20, 30))
spec <- fit(spec)
dataset <- hearts %>% dataset_use_spec(spec)
input <- layer_input_from_dataset(dataset)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.