Skip to content

Commit

Permalink
reorder NEWS entries
Browse files Browse the repository at this point in the history
  • Loading branch information
t-kalinowski committed Sep 30, 2021
1 parent 80333b6 commit 6af2391
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,7 @@
`"tf-idf"` is renamed to `"tf_idf"` (backwards compatibility is preserved).
- Fixed an issue where valid values of `output_mode = "int"` would incorrectly
return a ragged tensor output shape.

- Fixed an issue in `layer_input()` where passing a tensorflow `DType` objects to argument `dtype` would throw an error.

- Fixed an issue in `compile()` where passing an R function via an in-line
call would result in an error from subsequent `fit()` calls.
(e.g., `compile(loss = function(y_true, y_pred) my_loss(y_true, y_pred))`
now succeeds)

- `clone_model()` gains a `clone_function` argument that allows you to customize each layer as it is cloned.


- Existing layer instances gain the ability to be added to sequential models via a call. E.g.:
```r
Expand All @@ -77,7 +69,17 @@
- `%py_class%` gains the ability to delay initializing the Python session until first use.
It is now safe to implement and export `%py_class%` objects in an R package.

- Fixed an issue in `layer_input()` where passing a tensorflow `DType` objects to argument `dtype` would throw an error.

- Fixed an issue in `compile()` where passing an R function via an in-line
call would result in an error from subsequent `fit()` calls.
(e.g., `compile(loss = function(y_true, y_pred) my_loss(y_true, y_pred))`
now succeeds)

- `clone_model()` gains a `clone_function` argument that allows you to customize each layer as it is cloned.

- 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

# keras 2.6.0

Breaking changes (Tensorflow 2.6):
Expand Down

0 comments on commit 6af2391

Please sign in to comment.