Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

params.yaml 1.1 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  1. impute:
  2. class: SimpleImputer
  3. module: sklearn.impute
  4. params:
  5. strategy: "median"
  6. train_test_split:
  7. class: train_test_split
  8. module: sklearn.model_selection
  9. params:
  10. test_size: 0.2
  11. random_state: 43
  12. grid_search:
  13. class: GridSearchCV
  14. module: sklearn.model_selection
  15. params:
  16. cv: [5,6,7,8,9,10]
  17. verbose: 2
  18. model_selection:
  19. module_0:
  20. class: LinearRegression
  21. module: sklearn.linear_model
  22. params:
  23. fit_intercept: True
  24. search_param_grid:
  25. fit_intercept:
  26. - true
  27. - false
  28. module_1:
  29. class: RandomForestRegressor
  30. module: sklearn.ensemble
  31. params:
  32. min_sample_leaf: 3
  33. search_param_grid:
  34. min_sample_leaf:
  35. - 6
  36. randomized_search:
  37. class: RandomizedSearchCV
  38. module: sklearn.model_selection
  39. params:
  40. n_estimators: [100,200,300,400,500,600,700,750,800,850,900,950,1000]
  41. max_features: ["auto", "sqrt"]
  42. max_depth: [4,5,10,15,20,25,30,35,40,50,60,75,100,110,120,150]
  43. min_samples_split: [2,5,10,15,20,50,100]
  44. min_samples_leaf: [2,5,4,9,6,30,33,50,75,100]
  45. scoring: 'neg_mean_squared_error'
  46. n_iter: 10
  47. cv: 5
  48. verbose: 2
  49. random_state: 43
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...