I wanted to ask if this is a valid way of doing hyperparameter tuning. I have 7 parameter for my model. Since I have too many parameters to do a grid search, I was going to try a different method:
- Do 500 iterations starting with random numbers for the hyperparameters, recording the parameter values and the final score metric that I am trying to minimize.
- Using the 500 results I have, take the top 20% in terms of score and calculate the mean and standard deviation for each parameter.
- Repeat this except for step 1 I randomly sample from the normal distribution with the calculated mean and standard deviation from step 2 for the parameters.
Would this be a way to at least roughly do hyperparameter tuning?