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 478 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. Training:
  3. cmd: python fraud_svm.py
  4. deps:
  5. - fraud_svm.py
  6. - Data/creditcard.csv
  7. outs:
  8. - Model/svm_fraud.pkl
  9. - Output/x_test.csv
  10. - Output/y_test.csv
  11. Testing:
  12. cmd: python fraud_svm_test.py
  13. deps:
  14. - fraud_svm_test.py
  15. - Output/x_test.csv
  16. - Output/y_test.csv
  17. - Model/svm_fraud.pkl
  18. outs:
  19. - Output/Accuracy.json
  20. - Output/Confusion_matrix.json
Tip!

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

Comments

Loading...