Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. space ={'max_depth': hp.quniform("x_max_depth", 4, 16, 1),
  2. 'min_child_weight': hp.quniform ('x_min_child', 1, 10, 1),
  3. 'subsample': hp.uniform ('x_subsample', 0.7, 1),
  4. 'gamma' : hp.uniform ('x_gamma', 0.1,0.5),
  5. 'colsample_bytree' : hp.uniform ('x_colsample_bytree', 0.7,1),
  6. 'reg_lambda' : hp.uniform ('x_reg_lambda', 0,1)
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement