I have an issue with hyperparameter optimization. I designed a simple NN and I am performing Hyperband class for hyperparameter optimization. Before executing the hyperparameter search, I want to see that if I give Hyperband model the same parameters as my simple NN design, do I get the same result as NN design? However, I couldn't get the same score.
To be more specific, I am giving into Hyperband the same parameters (in my case, I gave one value for searching and these are the same values in using NN) and my expectation was to get the same scores which are produced by the simple NN.
After parameter search completed, the created model for best parameters should be the same as the NN design, or am I missing something?
Is anyone have any experience with similar issue?