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
decode
LinearDiscretizer
SampleBinCenter
SampleUniform
using Discretizers binedges = [0, 0.5, 1] lineardisc = LinearDiscretizer(binedges) decode_1 = decode(lineardisc, 1, SampleBinCenter()) # 0.25 decode_2 = decode(lineardisc, 2, SampleBinCenter()) # 0.75 decode_12 = decode(lineardisc, [1, 2], SampleBinCenter()) # Random sampling from bins @info decode_1 == decode_12[1] @info decode_2 == decode_12[2]
Running this code currently outputs false for both.
false
The text was updated successfully, but these errors were encountered:
Thank you! Fixed in f33800c
Sorry, something went wrong.
tawheeler
No branches or pull requests
Running this code currently outputs
false
for both.The text was updated successfully, but these errors were encountered: