neps icon indicating copy to clipboard operation
neps copied to clipboard

Priorband: Defining default value + default_confidence for fidelity parameter

Open danrgll opened this issue 1 year ago • 3 comments

As far as I understand Priorband, it doesn’t make sense to have this functionality and should raise an error.

pipeline_space:
  learning_rate:
    lower: 1e-5
    upper: 1e-1
    log: True  # Log scale for learning rate
    default: 1e-2
    default_confidence: "medium"
  epochs:
    lower: 5
    upper: 20
    is_fidelity: True
    **default: 10**
    **default_confidence: "medium"**
  dropout_rate:
    lower: 0.1
    upper: 0.5
    default: 0.2
    default_confidence: "high"
  optimizer:
    choices: [adam, sgd, adamw]
    default: adam
    # default confidence low
  batch_size: 64

danrgll avatar May 23 '24 13:05 danrgll

What exactly is the error and under what conditions?

Neeratyoy avatar Jul 03 '24 00:07 Neeratyoy

Sorry I should have highlighted this better. What I meant was that for the fidelity parameter I also can define a default and default_confidence. Is this intented?

danrgll avatar Jul 03 '24 09:07 danrgll

Is this intented?

Don't think so. Likely an artifact from the general SearchSpace.

Neeratyoy avatar Jul 08 '24 22:07 Neeratyoy