View source on GitHub |
Controls the redirection of training logs for display.
tfdf.keras.set_training_logs_redirection(
value: Union[str, bool]
)
The default value ("auto") should be satifying in most cases.
If the training is stuck before training, call
set_training_logs_redirection(false)
.
If you don't see the training logs (even through the model created with
verbose=2
), call set_training_logs_redirection(true)
.
Args | |
---|---|
value
|
Redirection. Can be False, True or "auto". |