From 4b4d127083b3b4012807da36dcc7980e01d05bd4 Mon Sep 17 00:00:00 2001 From: Alok Date: Tue, 24 Nov 2020 18:17:41 -0500 Subject: [PATCH] [Issue #336] Fixing known issues in 09_tabular notebook (#340) * Added install commands for packages in tabular nb * Delete .gitattributes * updated mkdir command - included parents=True updated command to save a Path object to pickle save/load replaced to save_pickle/load_pickle * Updated save_pickle/load_pickle calls --- 09_tabular.ipynb | 33 ++++----------------------------- 1 file changed, 4 insertions(+), 29 deletions(-) diff --git a/09_tabular.ipynb b/09_tabular.ipynb index d740866..4f7e58a 100644 --- a/09_tabular.ipynb +++ b/09_tabular.ipynb @@ -7,7 +7,7 @@ "outputs": [], "source": [ "#hide\n", - "!pip install -Uqq fastbook\n", + "!pip install -Uqq fastbook kaggle waterfallcharts treeinterpreter dtreeviz\n", "import fastbook\n", "fastbook.setup_book()" ] @@ -384,7 +384,7 @@ ], "source": [ "if not path.exists():\n", - " path.mkdir()\n", + " path.mkdir(parents=true)\n", " api.competition_download_cli('bluebook-for-bulldozers', path=path)\n", " file_extract(path/'bluebook-for-bulldozers.zip')\n", "\n", @@ -1392,7 +1392,7 @@ "metadata": {}, "outputs": [], "source": [ - "(path/'to.pkl').save(to)" + "save_pickle(path/'to.pkl',to)" ] }, { @@ -1434,7 +1434,7 @@ "outputs": [], "source": [ "#hide\n", - "to = (path/'to.pkl').load()" + "to = load_pickle(path/'to.pkl')" ] }, { @@ -9828,31 +9828,6 @@ "display_name": "Python 3", "language": "python", "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.5" - }, - "toc": { - "base_numbering": 1, - "nav_menu": {}, - "number_sections": false, - "sideBar": true, - "skip_h1_title": true, - "title_cell": "Table of Contents", - "title_sidebar": "Contents", - "toc_cell": false, - "toc_position": {}, - "toc_section_display": true, - "toc_window_display": false } }, "nbformat": 4,