Using set_params to adjust hyperparamters of models in dector_list of LSCP model. #582
Unanswered
bharvey125
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to adjust the hyperparameter of the underlying models in LSCP? I'm attempting to do some hyperparameter tuning with some synthetic anomalies and I need to adjust the nu parameter in the OCSVM model. I'm attempting to fit three OCSVMS with different kernal functions and I want to tune both the contamination and the nu hyperparameters in the OCSVM models. The LSCP model exposes the contamination parameter, so it can be adjusted using set_params({'model__contamination' :x}). How would I go about adjusting nu? I've tried 'model__nu' but I receive an error that the LSCP model doesn't have a nu parameter. Any advice would be appreciated
Beta Was this translation helpful? Give feedback.
All reactions