Skip to content

Tag: grid-search

Error while doing SVR for multiple outputs

Trying to do SVR for multiple outputs. Started by hyper-parameter tuning which worked for me. Now I want to create the model using the optimum parameters but I am getting an error. How to fix this? Output: Trying to create a model using the output: Error: Answer Please consult the MultiOutputRegressor docs. T…

Random Forest tuning with RandomizedSearchCV

I have a few questions concerning Randomized grid search in a Random Forest Regression Model. My parameter grid looks like this: and my code for the RandomizedSearchCV like this: is there any way to calculate the Root mean square at each parameter set? This would be more interesting to me as the R^2 score? If…