how to set the configs for calling the trained QPTUNA model during staged learning #74
-
Beta Was this translation helpful? Give feedback.
Answered by
halx
May 7, 2024
Replies: 2 comments 2 replies
-
You need to fix the syntax in analogy to the other components: [[stage.scoring.component]]
[stage.scoring.component.Qptuna]
[[stage.scoring.component.Qptuna.endpoint]]
name = "Qptuna" # you may want to choose a more descriptive name
weight = 0.7
params.model_file = "../models/best_SVR_20240502D000133.pkl"
# you may have to adjust the transform to the output range of the model
transform.type = "reverse_sigmoid"
transform.high = 0.0
transform.low = -50.0
transform.k = 0.4 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
MachineGUN001
-
You forgot the "scoring" in the section name, see below. This must be all consistent as you eventually describe a tree. Currently we do not have sanity checks in place to detect this but we are working on better input validation for a future release. [[stage.scoring.component.Qptuna.endpoint]] |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to fix the syntax in analogy to the other components: