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 980 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
  1. stages:
  2. data-split:
  3. cmd: python3 src/data_split.py
  4. deps:
  5. - data/raw_data/train.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. data-preprocess:
  13. cmd: python3 src/data_preprocess.py
  14. deps:
  15. - data/processed_data/x_train.npy
  16. - data/processed_data/x_test.npy
  17. - src/data_preprocess.py
  18. outs:
  19. - models/tokenizer.pkl
  20. - data/embedding_matrix.npy
  21. model-training:
  22. cmd: python3 src/model_training.py
  23. deps:
  24. - data/embedding_matrix.npy
  25. - src/model_training.py
  26. outs:
  27. - models/toxicity_classifier.h5
  28. - plots/accuracy.jpg
  29. - plots/loss.jpg
  30. model-evaluation:
  31. cmd: python3 src/model_evaluation.py
  32. deps:
  33. - data/processed_data/x_test.npy
  34. - data/processed_data/y_test.npy
  35. - models/toxicity_classifier.h5
  36. - src/model_evaluation.py
Tip!

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

Comments

Loading...