This commit is contained in:
Adam Comella 2024-09-12 11:08:40 -07:00 committed by GitHub
commit 414accf636
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -726,6 +726,13 @@
"metadata": {},
"outputs": [],
"source": [
"# Errata:\n",
"# This line should have been:\n",
"# cond = ((df.saleYear<2011) | ((df.saleYear==2011) & (df.saleMonth<10))\n",
"#\n",
"# Correcting this line is postponed to a future edition of the book because\n",
"# it requires a re-analysis of the data. For discussion see:\n",
"# https://github.com/fastai/fastbook/issues/325.\n",
"cond = (df.saleYear<2011) | (df.saleMonth<10)\n",
"train_idx = np.where( cond)[0]\n",
"valid_idx = np.where(~cond)[0]\n",