Run Configuration

This class specifies the configurations for an Estimator run.

run_config()

See also

Other run_config methods: task_type

Examples

# NOT RUN {
config <- run_config()

# Get the properties of the config
names(config)

# Change the mutable properties of the config
config <- config$replace(tf_random_seed = 11L, save_summary_steps = 12L)

# Print config as key value pairs
print(config)
# }