File tree Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change 11## Terminology and Techniques
22
33
4- - Clustering: Putting data together which have similar characteristics into dense cluster in an unsupervised way
4+
5+
6+ |Problem |Definition
7+ | -------------------------------| -----------------------------|
8+ | Regression | find a relation between x(indep var) and y(dep var) |
9+ | Classification | classify an observation to one of the known categories |
10+ | Clustering| group a set of objects into several known clusters|
11+
12+
13+ ### Steps to Building a Model
14+ ---
15+ 1 . Retrieve The Data
16+ 2 . Prepare the data and fix the issues such as any values missing and the outliers
17+ 3 . Analyze your data and make a decision on which algorithm suits your needs
18+ 4 . Train your model using the algo you just chose. Start simple by only using the most import variables
19+ 5 . If your model does not meet your needs choose another algorithm or bring in different variables into your existing model
20+
21+ ### Machine Learning Algorithm, Problem and its Learning Style
22+ | Algorithm | Problem | Learning Style|
23+ | -------------------------------| -----------------------------| ------------|
24+ |Decision Tree| Classification/Regression |Supervised
25+ |Logistic Reg|Classification|Supervised
26+ |K-Means| Clustering |Unsupervised
27+ |KNN| Classification|Supervised
28+ |Naive-Bayes| Classification|Supervised
29+ |Random Forest| Classification/Regression |Supervised
30+ |SVM| Classification/Regression|Supervised
31+
532
633### Types of Algo in Clustering:
734- K Means Clustering
You can’t perform that action at this time.
0 commit comments