Skip to content

Commit

Permalink
Update to training notebook to correct df assignment (aws#2996)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: Ali Arsanjani <[email protected]>
  • Loading branch information
3 people authored Oct 28, 2021
1 parent ce14e72 commit 2d81c82
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 2d81c82

Please sign in to comment.