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

default.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
  1. # train
  2. cv: 3
  3. estimator_name: xgb
  4. estimators:
  5. knn:
  6. param_grid: # params of GridSearchCV constructor
  7. n_neighbors: [4, 5]
  8. weights: ['uniform', 'distance']
  9. algorithm: 'auto'
  10. leaf_size: 30
  11. p: 2
  12. metric: 'minkowski'
  13. metric_params: None
  14. n_jobs: None
  15. xgb:
  16. param_grid:
  17. n_estimators: [20, 30]
  18. booster: ['gbtree', 'gblinear']
  19. random_forest:
  20. param_grid:
  21. n_estimators: [50, 100]
  22. criterion: ['gini', 'log_loss']
  23. max_depth: None
  24. min_samples_split: 2
  25. min_samples_leaf: 1,
  26. min_weight_fraction_leaf: 0.0
  27. max_features: 'sqrt'
  28. decision_tree:
  29. param_grid:
  30. criterion: ['gini', 'entropy']
  31. splitter: 'best'
  32. max_depth: None
  33. min_samples_split: 2
  34. min_samples_leaf: 1
  35. min_weight_fraction_leaf: 0.0
  36. max_features: None
  37. random_state: None
  38. max_leaf_nodes: None
  39. min_impurity_decrease: 0.0
  40. class_weight: None
  41. ccp_alpha: 0.0
  42. model_path: C:/Users/HI/Desktop/.dev/python/Deep learning/Projects/Fetal Health/models/model.joblib
Tip!

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

Comments

Loading...