forked from AlekhyaSasi/MyWritings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMachine Learning.doc
32 lines (19 loc) · 1.16 KB
/
Machine Learning.doc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Machine Learning Concepts
Types of Machine Learning:
1. Supervised.
a. Regression
Eg: Cancer to Smoking Comparision.
b. Classification
2. Unsupervised.
a. Clustering
b. Association.
Machine Learining Life Cycle:
Raw Data - > pre Process Models - > ML Algorithms -> Candidate Model -> Deploy model -> Application
Azure MI plays a major role in handling the steps from Pre process - Deployment.
Convolutions:Getting pixels of the images, filter the values of the neighbors and multiply them to get the new pixel value. This is required to have multiple filtering applied on the images to get particular details of the images.
Eg: An image having eyes highlighted of a particular person.
Disadvantages: More details of the pixels, more storage and data.
Solution: Pooling.
Pooling: Shrinking the size of the image while enhancing some feature details.
This is done by taking parts of the pixels and getting the highest value it and make a pixel taking away 75% of the pixels.
Eg: Take a pixel with 16 units and 2*2 pooling is done by taking the highest value in each 2*2 columns and eliminating the rest of the pixels. Hence, 75% of the memory is saved.