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 631 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  1. stages:
  2. Training:
  3. cmd: python fraud_svm.py
  4. deps:
  5. - fraud_svm.py
  6. - Data/creditcard.csv
  7. outs:
  8. - Models/Fraud_SVM.pkl
  9. - Data/x_test.csv
  10. - Data/y_test.csv
  11. Testing:
  12. cmd: python fraud_svm_test.py
  13. deps:
  14. - fraud_svm_test.py
  15. - Data/x_test.csv
  16. - Data/y_test.csv
  17. - Models/Fraud_SVM.pkl
  18. outs:
  19. - auc.png
  20. - confusion_mat.png
  21. metrics:
  22. - Output/Accuracy.json:
  23. cache: false
  24. plots:
  25. - plots.json:
  26. cache: false
  27. x: fpr
  28. y: tpr
Tip!

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

Comments

Loading...