Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
release v0.2.0
Browse files Browse the repository at this point in the history
Add `setup_tb`, write `summary_config` for tensorboard hparams to be able to recognize hyperparameter more accurately. 
This converts keras-tuner hp into tensorboard hparams api, then write `summary_config`.

Support:
- `kerastuner.engine.hyperparameters.Int`: converted into `hp.IntInterval`
- `kerastuner.engine.hyperparameters.Choice`: converted into `hp.Discrete`
- `kerastuner.engine.hyperparameters.Float`: converted into `hp.RealInterval`
- `kerastuner.engine.hyperparameters.Boolean`: converted into `hp.Discrete`, values=(True, False)
  • Loading branch information
tokusumi authored Oct 3, 2020
1 parent 6876bb8 commit 1e79e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kerastuner-tensorboard-logger"
version = "0.1.0"
version = "0.2.0"
description = "Simple integration of keras-tuner (hyperparameter tuning) and tensorboard dashboard (interactive visualization)."
authors = ["tokusumi <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 1e79e34

Please sign in to comment.