Skip to content

Tags: dgrahn/keras

Tags

v2.6.0-rc3

Toggle v2.6.0-rc3's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Use the safer `safe_load` function instead of `unsafe_load` when poss…

…ible

There is no need to open ourselves up to arbitrary code execution, especially since this is not in a performance critical loop, so we can take the slowdown due to safety.

PiperOrigin-RevId: 388501098

v2.6.0-rc2

Toggle v2.6.0-rc2's commit message
Add more explicit error message for instance type checking of optimizer.

PiperOrigin-RevId: 382409145

v2.6.0-rc1

Toggle v2.6.0-rc1's commit message
Internal change

PiperOrigin-RevId: 382327442

v2.6.0-rc0

Toggle v2.6.0-rc0's commit message
Add ParameterServerStrategy combination to ketrics_metrics_test.

PiperOrigin-RevId: 381424814

2.4.0

Toggle 2.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Redirect Keras to tf.keras (keras-team#14121)

* Replace all code with tf.keras redirects

2.3.1

Toggle 2.3.1's commit message
Prepare 2.3.1 release

2.3.0

Toggle 2.3.0's commit message
Update README

2.2.5

Toggle 2.2.5's commit message
Fix sklearn regressor test?

2.2.4

Toggle 2.2.4's commit message
Prepare 2.2.4 release.

2.2.3

Toggle 2.2.3's commit message
[RELNOTES] [P] Write to TensorBoard every x samples. (keras-team#11152)

* Working on improving tensor flow callbacks

* Adding batch level TensorBoard logging (implementing the `on_batch_end` method to the TensorBoard class

* Interim commit -- added notes.

* Corrected stylistic issues -- brought to compliance w/ PEP8

* Added the missing argument in the test suite.

* Added the possibility to choose how frequently tensorboard should log
the metrics and losses.

* Fixed the issue of the validation data not being displayed.

* Fixed the issue about the callback not remembering when was the last
time it wrote to the logs.

* Removed the error check.

* Used update_freq instead of write_step.

* Forgot to change the constructor call.