Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. what is machine learning?
  2. - my example with linear regression
  3. - decision tree example (show an example of a tree, then explain how the algorithm can learn it)
  4. - most importantly, it requires you to get the data in the format that you have "X" and "y"
  5.  
  6. what is it to be used for?
  7. - should money be paid to a client (insurance)?
  8. -> they cannot have an AI say "No" to people (the result has to be explainable)
  9. - automatically detect damage on cars (computer vision at a customer)
  10.  
  11.  
  12. warnings:
  13. - using historic data is wrong when you have a new "rule"
  14. - I don't recommend to do machine learning when you still have to collect the data
  15. - chatbot! you can use customer interactions, it's useful data... can be used in analytical way, but not through machine learning
  16. - when someone says they have "a lot of useful data" -> run!
  17.  
  18.  
  19. tips:
  20. - start with a new process that does not rely yet on rules
  21. - in big companies: spend time building a small prediction framework specialized for your core data
  22. - Use AI stories, build towards it, but don't forget the "easy gains" along the way
  23. - sometimes just be excited about automation! that's usually the end goal
  24. - go make a little open source project using machine learning!
  25.  
  26. tricks:
  27. - machine learning allows people to do a simple task of training without having to add code
  28.  
  29. when does machine learning help?
  30.  
  31. requirements when to use machine learning:
  32. - it is very difficult to code the rules
  33. - it too time consuming to manually evaluate all cases
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement