|
1 | 1 | # keras (development version) |
2 | 2 |
|
3 | | -- New family of *preprocessing* layers. These are the spiritual successor to the `tfdatasets::step_*` family of data transformers (to be deprecated in a future release). New function: |
| 3 | +- New family of *preprocessing* layers. These are the spiritual successor to the `tfdatasets::step_*` family of data transformers (to be deprecated in a future release). |
| 4 | + Added a new vignette: "Working with preprocessing layers". |
| 5 | + New functions: |
4 | 6 |
|
5 | 7 | Image preprocessing: |
6 | 8 | - `layer_resizing()` |
|
53 | 55 |
|
54 | 56 | - Fixed an issue in `layer_input()` where passing a tensorflow `DType` objects to argument `dtype` would throw an error. |
55 | 57 |
|
56 | | -- Fixed an issue in `compile()` where passing an R function via an in-line |
| 58 | +- Fixed an issue in `compile()` where passing an R function via an in-line |
57 | 59 | call would result in an error from subsequent `fit()` calls. |
58 | | - (e.g., `compile(loss = function(y_true, y_pred) my_loss(y_true, y_pred))` |
| 60 | + (e.g., `compile(loss = function(y_true, y_pred) my_loss(y_true, y_pred))` |
59 | 61 | now succeeds) |
60 | 62 |
|
61 | 63 | - `clone_model()` gains a `clone_function` argument that allows you to customize each layer as it is cloned. |
|
72 | 74 | `layer_subtract()`, `layer_multiply()`, `layer_average()`, `layer_maximum()`, |
73 | 75 | `layer_minimum()` , `layer_dot()`) |
74 | 76 |
|
75 | | -- `%py_class%` gains the ability to delay initializing the python session until first use. |
| 77 | +- `%py_class%` gains the ability to delay initializing the Python session until first use. |
76 | 78 | It is now safe to implement and export `%py_class%` objects in an R package. |
77 | 79 |
|
| 80 | +- Bumped minimum R version to 3.4. Expanded CI to test on all supported R version. Fixed regression that prevented package installation on R <= 3.4 |
78 | 81 | # keras 2.6.0 |
79 | 82 |
|
80 | 83 | Breaking changes (Tensorflow 2.6): |
@@ -600,7 +603,7 @@ SavedModel format. |
600 | 603 | - Don't re-export `install_tensorflow()` and `tf_config()` from tensorflow |
601 | 604 | package. |
602 | 605 |
|
603 | | -- `is_keras_available()` function to probe whether the Keras python |
| 606 | +- `is_keras_available()` function to probe whether the Keras Python |
604 | 607 | package is available in the current environment. |
605 | 608 |
|
606 | 609 | - `as.data.frame()` S3 method for Keras training history |
|
0 commit comments