MsSurgeon
Results
2
issues of
MsSurgeon
Hello, I'm using lib in jupyter notebook and observe this behavia that when i try to call the method in loop it return the same article. https://monosnap.com/file/4EFH9t0tAV2SvRsEzCJLrwuwuiE8CV
I'm using this code ``` space4rf = { 'max_depth': hp.choice('max_depth', range(1,20)), 'min_samples_leaf': hp.choice('min_samples_leaf', range(1,10)), } def f(params): global best acc = hyperopt_train_test(params) return {'loss': -acc, 'status': STATUS_OK} def hyperopt_train_test(params): clf...