diff --git a/DESCRIPTION b/DESCRIPTION index 0352373a6..d6829d471 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: keras Type: Package Title: R Interface to 'Keras' -Version: 2.1.3.1001 +Version: 2.1.3.1002 Authors@R: c( person("JJ", "Allaire", role = c("aut", "cre"), email = "jj@rstudio.com"), person("François", "Chollet", role = c("aut", "cph")), diff --git a/NEWS.md b/NEWS.md index dc01c1caf..baf27b4a9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -14,6 +14,8 @@ Install the development version with: `install_github("rstudio/keras")` - New layers `layer_activation_softmax()` and `layer_separable_conv_1d()` +- Fix incompatibility with Progbar.update() method in Keras 2.1.4 + ## Keras 2.1.3 (CRAN) diff --git a/inst/python/kerastools/progbar.py b/inst/python/kerastools/progbar.py index 3ded2bd47..808697bd8 100644 --- a/inst/python/kerastools/progbar.py +++ b/inst/python/kerastools/progbar.py @@ -20,7 +20,7 @@ def update_with_patch(self, current, values=None, force=False): # force dynamic display self._dynamic_display = True # delegate - update(self, current, values, force) + update(self, current, values) # apply the patch Progbar.update = update_with_patch