Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. TP1 <- 5
  2. TP2 <- 10
  3. P1 <- 15
  4. P2 <- 30
  5.  
  6. FP1 <- 3
  7. FP2 <- 2
  8. N1 <- 12
  9. N2 <- 8
  10.  
  11. TN1 <- N1 - FP1
  12. TN2 <- N2 - FP2
  13.  
  14. TPR2 <- TP2/P2
  15. TPR1 <- TP1/P1
  16.  
  17. FPR2 <- FP2/N2
  18. FPR1 <- FP1/N1
  19.  
  20. acc2 <- (TP2 + TN2)/(P2+N2)
  21. acc1 <- (TP1 + TN1)/(P1+N1)
  22.  
  23. TPR2 == TPR1
  24. FPR2 == FPR1
  25. acc2 == acc1
  26.  
  27. TRUE
  28. TRUE
  29. FALSE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement