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

dvc.yaml 488 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
  1. stages:
  2. data-split:
  3. cmd: python3 src/data_split.py
  4. deps:
  5. - data/raw_data/clean_data.csv
  6. - src/data_split.py
  7. outs:
  8. - data/processed_data/x_test.npy
  9. - data/processed_data/x_train.npy
  10. - data/processed_data/y_test.npy
  11. - data/processed_data/y_train.npy
  12. normalize:
  13. cmd: python3 src/normalize.py
  14. deps:
  15. - data/processed_data/x_train.npy
  16. - data/processed_data/x_test.npy
  17. - src/normalize.py
  18. outs:
  19. - data/scaling_model.pkl
Tip!

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

Comments

Loading...