Skip to content

Commit 87b8bbc

Browse files
Some Important Core Concepts in ML
1 parent 67fcc1b commit 87b8bbc

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

Machine Learning/README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
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

0 commit comments

Comments
 (0)