Jonathan358 t1_jcuh7ya wrote on March 19, 2023 at 5:36 PM Reply to [D] Simple Questions Thread by AutoModerator Hello, I have a very simple question but cannot find any info on: How to create an exponential range (squared) for hyperparameter values to be tuned? E.g. from 2-64, increament in steps of 2^2? Not looking for a complicated solution involving lists, ect. ff_dim=hp.Int('ff_dim', min_value=2, max_value=64, step=n^2) edit: solved with, sampling="log" Permalink 1
Jonathan358 t1_jcuh7ya wrote
Reply to [D] Simple Questions Thread by AutoModerator
Hello, I have a very simple question but cannot find any info on:
How to create an exponential range (squared) for hyperparameter values to be tuned? E.g. from 2-64, increament in steps of 2^2?
Not looking for a complicated solution involving lists, ect.
edit: solved with, sampling="log"