Skip to content

Commit fdae52a

Browse files
author
Lee, Sangkeun (Matt)
committed
latest
1 parent 5ed1e97 commit fdae52a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

notebook/reference.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@
292292
}
293293
],
294294
"source": [
295-
"asc.train_and_save_classifier(model, \"model.pkl\", model_type\n",
295+
"asc.train_and_save_classifier(model, \"model_1.pkl\", model_type\n",
296296
" , input_cols=header_x, target_col=header_y\n",
297297
" , x_train=x_train, y_train=y_train, scaler_option=scaler_option, path_to_save = '.', accuracy=accuracy)"
298298
]
@@ -313,7 +313,7 @@
313313
],
314314
"source": [
315315
"# You can load the saved model by using pickle package\n",
316-
"model_dict = pickle.load(open('model.pkl', 'rb'))\n",
316+
"model_dict = pickle.load(open('model_1.pkl', 'rb'))\n",
317317
"\n",
318318
"# Let's assume that we have a input as follows\n",
319319
"x_to_predict = [[4.5, 2.4, 1.2, 4.2]]\n",
@@ -564,7 +564,7 @@
564564
],
565565
"source": [
566566
"# saving the trained model in a file\n",
567-
"asc.train_and_save(model, \"trained_model\", model_type\n",
567+
"asc.train_and_save(model, \"model_2.pkl\", model_type\n",
568568
" , input_cols=header_x, target_col=header_y\n",
569569
" , x_train=x_train, y_train=y_train, scaler_option=scaler_option, path_to_save = '.', MAE=MAE, R2=R2)"
570570
]
@@ -595,7 +595,7 @@
595595
"name": "python",
596596
"nbconvert_exporter": "python",
597597
"pygments_lexer": "ipython3",
598-
"version": "3.6.9"
598+
"version": "3.7.1"
599599
}
600600
},
601601
"nbformat": 4,

0 commit comments

Comments
 (0)