We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I realized that for this snippet:
import keras_tuner keras_tuner.__version__ hp = keras_tuner.HyperParameters() min = .2 max = .6 step = 0.2 hp.Float("dropout_rate", min, max, step) print("This should print 3 values:", list(hp.space[0].values))
I get
'1.4.7' This should print 3 values: [0.2, 0.4]
The root cause seems to be the division at:
keras-tuner/keras_tuner/engine/hyperparameters/hp_types/numerical.py
Line 119 in 8aa8dc2
I'd suggest to replace the integer division by a floating point division and would be willing to contribute a PR.
The text was updated successfully, but these errors were encountered:
Float
Successfully merging a pull request may close this issue.
I realized that for this snippet:
I get
The root cause seems to be the division at:
keras-tuner/keras_tuner/engine/hyperparameters/hp_types/numerical.py
Line 119 in 8aa8dc2
I'd suggest to replace the integer division by a floating point division and would be willing to contribute a PR.
The text was updated successfully, but these errors were encountered: