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 680 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
  1. stages:
  2. get_data:
  3. cmd: python get_data.py
  4. deps:
  5. - get_data.py
  6. outs:
  7. - data/raw/airline_sentiment_data.csv
  8. prepare_data:
  9. cmd: python prepare_data.py
  10. deps:
  11. - prepare_data.py
  12. - data/raw/airline_sentiment_data.csv
  13. outs:
  14. - data/preprocessed/airline_sentiment_preprocessed_data.csv
  15. train_model:
  16. cmd: python train_model.py
  17. deps:
  18. - train_model.py
  19. - data/preprocessed/airline_sentiment_preprocessed_data.csv
  20. outs:
  21. - metadata/metrics.json
  22. - model/bert_model.model
  23. save_metadata_to_dvc:
  24. cmd: python save_metadata.py
  25. deps:
  26. - save_metadata.py
  27. - metadata/metrics.json
  28. - model/bert_model
Tip!

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

Comments

Loading...