Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. def read_data():
  2. return
  3.  
  4. def process_data():
  5. return
  6.  
  7. def build_model():
  8. return
  9.  
  10. def gini_impurity():
  11. return
  12.  
  13. def evaluate_accuracy():
  14. return
  15.  
  16. def confusion_matrix()
  17. return
  18.  
  19. def main():
  20. read_data()
  21. process_data()
  22. build_model()
  23. gini_impurity()
  24. evaluate_accuracy()
  25. confusion_matrix()
  26. return
  27.  
  28.  
  29. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement