Skip to content

Commit a5d2ad1

Browse files
8orrin9gitbook-bot
authored andcommitted
GITBOOK-38: Save / Load
1 parent 787674b commit a5d2ad1

13 files changed

+123
-0
lines changed

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

71.3 KB
Loading

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

108 KB
Loading

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

86.4 KB
Loading

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

108 KB
Loading

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

91.9 KB
Loading

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

90.4 KB
Loading

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

71.6 KB
Loading

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

46.5 KB
Loading

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

43.7 KB
Loading

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

44.9 KB
Loading

docs/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,4 @@
6565
* [11. Model Info](machine-learning/11.-model-info.md)
6666
* [12. Evaluation](machine-learning/12.-evaluation.md)
6767
* [13. Pipeline](machine-learning/13.-pipeline.md)
68+
* [14. Save / Load](machine-learning/14.-save-load.md)

docs/machine-learning/13.-pipeline.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,80 @@
11
# 13. Pipeline
22

3+
4+
5+
<figure><img src="../.gitbook/assets/image (180).png" alt="" width="286"><figcaption></figcaption></figure>
6+
7+
1. Click on _**Pipeline**_ in the _**Machine Learning**_ category.
8+
9+
10+
11+
<figure><img src="../.gitbook/assets/image (181).png" alt="" width="563"><figcaption></figcaption></figure>
12+
13+
2. _**Pipeline**_: Choose the type of task:
14+
* [Data Preparation](13.-pipeline.md#data-preparation)
15+
* [Regression / Classification / GridSearch](13.-pipeline.md#regression-classification-gridsearch)
16+
* [Clustering](13.-pipeline.md#clustering)
17+
* [Dimension Reduction](13.-pipeline.md#dimension-reduction)
18+
3. _**Code view**_: Preview the code that will be generated.
19+
4. _**Run**_: Execute the code.
20+
21+
22+
23+
***
24+
25+
### Data Preparation
26+
27+
28+
29+
<figure><img src="../.gitbook/assets/image (182).png" alt="" width="563"><figcaption></figcaption></figure>
30+
31+
1. [_**Data Prep**_](3.-data-prep.md)
32+
2. [_**Fit**_](10.-fit-predict.md)
33+
3. [_**Transform**_](10.-fit-predict.md)
34+
35+
36+
37+
***
38+
39+
### Regression / Classification / GridSearch
40+
41+
42+
43+
<figure><img src="../.gitbook/assets/image (183).png" alt="" width="563"><figcaption></figcaption></figure>
44+
45+
1. [_**Data Split**_](2.-data-split.md)
46+
2. [_**Regressor**_ ](5.-regressor.md)_**/**_ [_**Classifier**_](6.-classifier.md) _**/**_ [_**GridSearch**_](9.-gridsearch.md)
47+
3. [_**Fit**_](10.-fit-predict.md)
48+
4. [_**Predict**_](10.-fit-predict.md)
49+
5. [_**Evaluation**_](12.-evaluation.md)
50+
51+
52+
53+
***
54+
55+
### Clustering
56+
57+
58+
59+
<figure><img src="../.gitbook/assets/image (184).png" alt="" width="563"><figcaption></figcaption></figure>
60+
61+
1. [_**Clustering**_](7.-clustering.md)
62+
2. [_**Fit**_](10.-fit-predict.md)
63+
3. [_**Predict**_](10.-fit-predict.md)
64+
4. [_**Transform**_](10.-fit-predict.md)
65+
5. [_**Evaluation**_](12.-evaluation.md)
66+
67+
68+
69+
***
70+
71+
### Dimension Reduction
72+
73+
74+
75+
<figure><img src="../.gitbook/assets/image (185).png" alt="" width="563"><figcaption></figcaption></figure>
76+
77+
1. [_**Dimension Reduction**_](8.-dimension.md)
78+
2. [_**Fit**_](10.-fit-predict.md)
79+
3. [_**Transform**_](10.-fit-predict.md)
80+
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# 14. Save / Load
2+
3+
4+
5+
<figure><img src="../.gitbook/assets/image (186).png" alt="" width="287"><figcaption></figcaption></figure>
6+
7+
1. Click on _**Save/Load**_ in the _**Machine Learning**_ category.
8+
9+
10+
11+
<figure><img src="../.gitbook/assets/image (187).png" alt="" width="563"><figcaption></figcaption></figure>
12+
13+
2. Choose an action:
14+
* [Save model](14.-save-load.md#save-model)
15+
* [Load model](14.-save-load.md#load-model)
16+
3. _**Code view**_: Preview the code that will be generated.
17+
4. _**Run**_: Execute the code.
18+
19+
20+
21+
***
22+
23+
### Save model
24+
25+
26+
27+
<figure><img src="../.gitbook/assets/image (188).png" alt="" width="563"><figcaption></figcaption></figure>
28+
29+
1. _**Target**_: Select the machine learning model to save.
30+
2. _**Save path**_: Specify the path (location) to save the model. You can easily specify it by clicking on the folder icon.
31+
32+
33+
34+
***
35+
36+
### Load model
37+
38+
39+
40+
<figure><img src="../.gitbook/assets/image (189).png" alt="" width="563"><figcaption></figcaption></figure>
41+
42+
1. _**Load path**_: Specify the path (location) where the model is saved. You can easily specify it by clicking on the folder icon.
43+
2. _**Allocate to**_: Enter the variable name to assign to the loaded model.
44+

0 commit comments

Comments
 (0)