Skip to content

Commit 7f28648

Browse files
minjk-blgitbook-bot
authored andcommitted
GITBOOK-29: Clustering
1 parent f7a3105 commit 7f28648

13 files changed

+63
-6
lines changed
63.6 KB
Loading

docs/.gitbook/assets/image (1).png

-1.84 KB
Loading
58 KB
Loading

docs/.gitbook/assets/image (2).png

-389 Bytes
Loading
52.3 KB
Loading

docs/.gitbook/assets/image (3).png

7.29 KB
Loading
55.7 KB
Loading

docs/.gitbook/assets/image (4).png

450 Bytes
Loading
60 KB
Loading

docs/.gitbook/assets/image (5).png

21.6 KB
Loading

docs/.gitbook/assets/image.png

-2.21 KB
Loading

docs/machine-learning/5.-regressor.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44

5-
<figure><img src="../.gitbook/assets/image.png" alt="" width="209"><figcaption></figcaption></figure>
5+
<figure><img src="../.gitbook/assets/image (5).png" alt="" width="209"><figcaption></figcaption></figure>
66

77
1. Click on the _**Regressor**_ in the _**Machine Learning**_ category.
88

99

1010

11-
<figure><img src="../.gitbook/assets/image (1).png" alt="" width="563"><figcaption></figcaption></figure>
11+
<figure><img src="../.gitbook/assets/image (1) (2).png" alt="" width="563"><figcaption></figcaption></figure>
1212

1313
2. _**Model Type**_: Choose the regression model.
1414

@@ -35,7 +35,7 @@
3535

3636

3737

38-
<figure><img src="../.gitbook/assets/image (2).png" alt="" width="563"><figcaption></figcaption></figure>
38+
<figure><img src="../.gitbook/assets/image (2) (2).png" alt="" width="563"><figcaption></figcaption></figure>
3939

4040
1. _**Fit Intercept**_: Choose whether to include the intercept.
4141

@@ -47,7 +47,7 @@
4747

4848

4949

50-
<figure><img src="../.gitbook/assets/image (3).png" alt="" width="563"><figcaption></figcaption></figure>
50+
<figure><img src="../.gitbook/assets/image (3) (2).png" alt="" width="563"><figcaption></figcaption></figure>
5151

5252
1. _**Alpha**_: Adjust the level of regularization.
5353

@@ -59,7 +59,7 @@
5959

6060

6161

62-
<figure><img src="../.gitbook/assets/image (4).png" alt="" width="563"><figcaption></figcaption></figure>
62+
<figure><img src="../.gitbook/assets/image (4) (2).png" alt="" width="563"><figcaption></figcaption></figure>
6363

6464
1. _**Alpha**_: Adjust the level of regularization.
6565
2. _**L1 ratio**_: Adjusts the balance (ratio) between _**L1 (Lasso)**_ and _**L2 (Ridge)**_ regularization.
@@ -72,7 +72,7 @@
7272

7373

7474

75-
<figure><img src="../.gitbook/assets/image (5).png" alt="" width="563"><figcaption></figcaption></figure>
75+
<figure><img src="../.gitbook/assets/image (5) (2).png" alt="" width="563"><figcaption></figcaption></figure>
7676

7777
1. _**C**_: Represents the degree of freedom for model regularization. Higher values of C make the model more complex, fitting the training data more closely.
7878
2. _**Kernel**_: Function mapping data to a higher-dimensional space, controlling model complexity.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,59 @@
11
# 7. Clustering
22

3+
4+
5+
<figure><img src="../.gitbook/assets/image.png" alt="" width="210"><figcaption></figcaption></figure>
6+
7+
1. Click on _**Clustering**_ under the _**Machine Learning**_ category.
8+
9+
10+
11+
<figure><img src="../.gitbook/assets/image (1).png" alt="" width="563"><figcaption></figcaption></figure>
12+
13+
2. _**Model type**_: Select the type of Model you want to use.
14+
* [KMeans / AgglomerativeClustering](7.-clustering.md#kmeans-agglomerativeclustering)
15+
* [GaussianMixture](7.-clustering.md#gaussianmixture)
16+
* [DBSCAN](7.-clustering.md#dbscan)
17+
3. _**Allocate to**_: Specify the variable name to assign to the generated model.
18+
4. _**Code view**_: Preview the generated code.
19+
5. _**Run**_: Execute the code.
20+
21+
22+
23+
***
24+
25+
### KMeans / AgglomerativeClustering
26+
27+
28+
29+
<figure><img src="../.gitbook/assets/image (2).png" alt="" width="563"><figcaption></figcaption></figure>
30+
31+
1. _**N clusters**_: Specify the number of clusters to be generated.
32+
2. _**Random state**_: Set the seed value for the random number generator.
33+
34+
35+
36+
***
37+
38+
### GaussianMixture
39+
40+
41+
42+
<figure><img src="../.gitbook/assets/image (3).png" alt="" width="563"><figcaption></figcaption></figure>
43+
44+
1. _**N components**_: Specify the number of Gaussian distributions to be used by the model to describe the data, determining how many clusters the data will be divided into.
45+
2. _**Random state**_: Set the seed value for the random number generator.
46+
47+
48+
49+
***
50+
51+
### DBSCAN
52+
53+
54+
55+
<figure><img src="../.gitbook/assets/image (4).png" alt="" width="563"><figcaption></figcaption></figure>
56+
57+
1. _**Eps (Epsilon)**_: Specify the maximum distance (radius) for forming clusters.
58+
2. _**Min samples**_: Specify the minimum number of neighboring data points required for a point to be recognized as a cluster.
59+

0 commit comments

Comments
 (0)