From 2d81c828e83561cc764ab6eb3be650d342c94047 Mon Sep 17 00:00:00 2001 From: Ali Arsanjani Date: Thu, 28 Oct 2021 15:52:09 -0700 Subject: [PATCH] Update to training notebook to correct df assignment (#2996) * added: index.rst for e2e folder, sage e2e fraud detect example * added index.rst * Updated notebooks for links, outputs * updated notebook 0 and added report.pdf clarify report * polish e2e notebooks * fix breaking codes * rm core files / add file link generator topdf * update to readme.md and deleted .csv * updated the train_model in nb 3 not to overide the df Co-authored-by: Miyoung Choi Co-authored-by: Ali Arsanjani --- .../03_train_model_lineage_registry_debugger.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/end_to_end/music_recommendation/03_train_model_lineage_registry_debugger.ipynb b/end_to_end/music_recommendation/03_train_model_lineage_registry_debugger.ipynb index b35d2cf134..713761b922 100644 --- a/end_to_end/music_recommendation/03_train_model_lineage_registry_debugger.ipynb +++ b/end_to_end/music_recommendation/03_train_model_lineage_registry_debugger.ipynb @@ -491,9 +491,9 @@ "source": [ "%%time\n", "\n", - "train = True # True if training a new model, False if wanting to use an existing estimator once you've already trained\n", + "train_model = True # True if training a new model, False if wanting to use an existing estimator once you've already trained\n", "\n", - "if train:\n", + "if train_model:\n", " print('Training the model')\n", " xgb_estimator.fit(inputs = {'train': train_input, 'validation': val_input})\n", " s3_debugger_output_path = xgb_estimator.latest_job_debugger_artifacts_path()\n",