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 909 B

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
  1. classifier: random_forest
  2. drop_cols:
  3. - Name
  4. - Cabin
  5. - Ticket
  6. dtypes:
  7. Age: float
  8. Embarked: category
  9. Fare: float
  10. Parch: int
  11. Pclass: category
  12. Sex: category
  13. SibSp: int
  14. Survived: category
  15. feature_eng:
  16. featurize: false
  17. imputation:
  18. Age: 29.6991
  19. Fare: 32.2042
  20. method: mean
  21. model_params:
  22. logistic_regression: null
  23. naive_bayes: null
  24. neural_network: null
  25. random_forest:
  26. criterion: entropy
  27. max_depth: 20
  28. min_samples_leaf: 3
  29. min_samples_split: 9
  30. support_vector_machine: null
  31. normalize: null
  32. param_tuning:
  33. logistic_regression: null
  34. naive_bayes: null
  35. neural_network: null
  36. num_eval: 1000
  37. random_forest:
  38. criterion: entropy
  39. max_depth: 20
  40. min_samples_leaf: 3
  41. min_samples_split: 9
  42. scoring: roc_auc
  43. support_vector_machine: null
  44. random_seed: 12345
  45. train_test_split:
  46. n_split: 10
  47. shuffle: true
  48. target_class: Survived
  49. predict:
  50. js_estimator: true
Tip!

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

Comments

Loading...