Advertisement
Venciity

Summary ML Notes

May 5th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. Part 1: Preprocessing the Data
  2. * Missing Data
  3. * Categorical Data
  4. * Dummy variables
  5. * Training and Testing split
  6. * Feature scaling
  7. * Някой алгоритми не се нуждаят от това, но други се нуждаят
  8. * Препоръчително е да се прави
  9.  
  10. Regression
  11. * Singe Linear Regression
  12. * Multiple Linear Regression
  13. * Polynomial Regression
  14. * parabolic effect
  15. * Example: used to describe how diseases spread or pandemics and epidemics spread across territory, across population
  16. * It's a special case of multiple linear regression
  17. * Support Vector Regression (SVR)
  18. * Decision Tree Regression
  19. * Random Forest Regression
  20.  
  21. * Evaluating Regression Models Performance
  22. * R-Squared
  23. * Adjusted R-Squared
  24. * Linear Regression Coefficients
  25.  
  26. Classification
  27. * Logistic Regression
  28. * K-Nearest Neighbours (K-NN)
  29. * Support Vector Machine (SVM)
  30. * Kernel SVM
  31. * Naive Bayes
  32. * Decision Tree Classifier
  33. * Random Forest Classification
  34.  
  35. * Evaluating Classification Models Performance
  36. * False Positive and False Negatives
  37. * Confusion Matrix
  38. * Accuracy Paradox
  39. * CAP Curve
  40. * CAP Curve Analysis
  41.  
  42. Clustering
  43. * K-means Clustering
  44. * Hierarchical Clustering
  45. * Dendograms
  46.  
  47. Association Rule Learning
  48. * Apriori
  49. * Eclat
  50.  
  51. Reinforcement Learning
  52. * Upper Confidence Bound (UCB)
  53. * Thompson Sampling
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement