Getting started:
Related tutorials:
| library(tfestimators) | |
| library(caret) | |
| #input_fn for a given subset of data | |
| cars_19_input_fn <- function(data, num_epochs = 1) { | |
| input_fn( | |
| data, | |
| features = colnames(cars_19[c(2:12)]), | |
| response = "fuel_economy_combined", | |
| batch_size = 64, |
Getting started:
Related tutorials: