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

config.yaml 1.6 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
  1. model:
  2. cv: 3
  3. estimator_name: xgb
  4. estimators:
  5. knn:
  6. param_grid:
  7. n_neighbors:
  8. - 4
  9. - 5
  10. weights:
  11. - uniform
  12. - distance
  13. algorithm: auto
  14. leaf_size: 30
  15. p: 2
  16. metric: minkowski
  17. metric_params: None
  18. n_jobs: None
  19. xgb:
  20. param_grid:
  21. n_estimators:
  22. - 20
  23. - 30
  24. random_forest:
  25. param_grid:
  26. n_estimators:
  27. - 50
  28. - 100
  29. criterion:
  30. - gini
  31. - log_loss
  32. max_depth: None
  33. min_samples_split: 2
  34. min_samples_leaf: 1,
  35. min_weight_fraction_leaf: 0.0
  36. max_features: sqrt
  37. decision_tree:
  38. param_grid:
  39. criterion:
  40. - gini
  41. - entropy
  42. splitter: best
  43. max_depth: None
  44. min_samples_split: 2
  45. min_samples_leaf: 1
  46. min_weight_fraction_leaf: 0.0
  47. max_features: None
  48. random_state: None
  49. max_leaf_nodes: None
  50. min_impurity_decrease: 0.0
  51. class_weight: None
  52. ccp_alpha: 0.0
  53. model_path: models/model.joblib
  54. train:
  55. random_state: 42
  56. ingest: ./data/fetal_health.csv
  57. dataset_csv: ./data/raw/fetal_health.csv
  58. test_size: 0.2
  59. trainset_path: data/processed/train.csv
  60. testset_path: data/processed/test.csv
  61. features_train_path: data/processed/featured_train.csv
  62. features_test_path: data/processed/featured_test.csv
  63. target_column: fetal_health
  64. reports_dir: reports
  65. metrics_file: metrics.json
  66. confusion_matrix_image: confusion_matrix.png
  67. confusion_matrix_data: confusion_matrix_data.csv
Tip!

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

Comments

Loading...