Ultimate access to all questions.
Which Hyperopt function returns a value similar to round(exp(normal(mu, sigma)) / q) * q
?
Explanation:
The correct answer is B. hp.qloguniform(label, low, high, q). This function generates a random value from a log-uniform distribution within specified bounds and quantizes it by rounding to a multiple of q
, closely matching the described formula's behavior. Other options do not fully replicate the formula's steps involving exponentiation, rounding, or quantization.