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

models.yaml 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  1. DecisionTree Regressor:
  2. ccp_alpha: 0.0
  3. criterion: squared_error
  4. min_impurity_decrease: 0.0
  5. min_samples_leaf: 1
  6. min_samples_split: 2
  7. min_weight_fraction_leaf: 0.0
  8. splitter: best
  9. ElasticNet Regression:
  10. alpha: 1.0
  11. copy_X: true
  12. fit_intercept: true
  13. l1_ratio: 0.5
  14. max_iter: 1000
  15. positive: false
  16. precompute: false
  17. selection: cyclic
  18. tol: 0.0001
  19. warm_start: false
  20. Lasso Regression:
  21. alpha: 1.0
  22. copy_X: true
  23. fit_intercept: true
  24. max_iter: 1000
  25. positive: false
  26. precompute: false
  27. selection: cyclic
  28. tol: 0.0001
  29. warm_start: false
  30. # Liner Regression:
  31. # copy_X: true
  32. # fit_intercept: true
  33. # n_jobs: -1
  34. # positive: false
  35. RandomForest Regressor:
  36. bootstrap: true
  37. ccp_alpha: 0.0
  38. criterion: squared_error
  39. # estimator: .DecisionTreeRegressor
  40. # #
  41. # # ccp_alpha: 0.0
  42. # # class_weight: null
  43. # # criterion: squared_error
  44. # # max_depth: null
  45. # # max_features: null
  46. # # max_leaf_nodes: null
  47. # # min_impurity_decrease: 0.0
  48. # # min_samples_leaf: 1
  49. # # min_samples_split: 2
  50. # # min_weight_fraction_leaf: 0.0
  51. # # monotonic_cst: null
  52. # # random_state: null
  53. # # splitter: best
  54. # estimator_params:
  55. # - criterion
  56. # - max_depth
  57. # - min_samples_split
  58. # - min_samples_leaf
  59. # - min_weight_fraction_leaf
  60. # - max_features
  61. # - max_leaf_nodes
  62. # - min_impurity_decrease
  63. # - random_state
  64. # - ccp_alpha
  65. # - monotonic_cst
  66. max_depth: null
  67. max_features: 1.0
  68. min_impurity_decrease: 0.0
  69. min_samples_leaf: 1
  70. min_samples_split: 2
  71. min_weight_fraction_leaf: 0.0
  72. n_estimators: 100
  73. oob_score: false
  74. verbose: 0
  75. warm_start: false
  76. # Ridge Regeassor:
  77. # alpha: 1.0
  78. # copy_X: true
  79. # fit_intercept: true
  80. # max_iter: null
  81. # positive: false
  82. # solver: auto
  83. # tol: 0.0001
Tip!

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

Comments

Loading...