File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 55
66- ` keras_shape ` objects (as returned by ` keras3::shape() ` ) gain ` == ` and ` != ` methods.
77
8+ - Fixed warning from ` tfruns::training_run() ` being unable to log optimizer learning rate.
9+
810- Added compatibility with Keras v3.4.1 (no R user facing changes).
911
1012User facing changes with upstream Keras v3.4.0:
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ callback_view_metrics <- Callback(
119119 optimizer <- model $ optimizer
120120 if (! is.null(optimizer )) {
121121 model_info $ optimizer <- py_str(optimizer )
122- model_info $ learning_rate <- as.double(optimizer $ lr )
122+ model_info $ learning_rate <- as.double(optimizer $ learning_rate )
123123 }
124124 tfruns :: write_run_metadata(" properties" , model_info )
125125 }, error = function (e ) {
You can’t perform that action at this time.
0 commit comments