mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-05 18:30:44 +00:00
Merge 847cf17367
into e8baa81d89
This commit is contained in:
commit
414accf636
@ -726,6 +726,13 @@
|
|||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"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",
|
"cond = (df.saleYear<2011) | (df.saleMonth<10)\n",
|
||||||
"train_idx = np.where( cond)[0]\n",
|
"train_idx = np.where( cond)[0]\n",
|
||||||
"valid_idx = np.where(~cond)[0]\n",
|
"valid_idx = np.where(~cond)[0]\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user