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

main.yaml 522 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
  1. hydra:
  2. output_subdir: null
  3. run:
  4. dir: .
  5. defaults:
  6. - process: process_2
  7. - segment: KMeans
  8. - _self_
  9. raw_data:
  10. path: data/raw/marketing_campaign.csv
  11. intermediate:
  12. dir: data/intermediate
  13. name: scale_features.csv
  14. path: ${intermediate.dir}/${intermediate.name}
  15. segmented:
  16. dir: data/final
  17. name: segmented.csv
  18. path: ${segmented.dir}/${segmented.name}
  19. flow: all
  20. pca:
  21. n_components: 3
  22. columns:
  23. - col1
  24. - col2
  25. - col3
  26. image:
  27. elbow: image/elbow.png
  28. clusters: image/cluster.png
Tip!

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

Comments

Loading...