Update 09_tabular to fastai v2.2.7 (#413)

saleElaped is now detected as continuous variable right away.
This commit is contained in:
Armin Berres
2021-02-22 23:06:26 +01:00
committed by GitHub
parent c3ceea7996
commit 8be580737e
2 changed files with 17 additions and 33 deletions

View File

@@ -1153,17 +1153,7 @@
"metadata": {},
"outputs": [],
"source": [
"cont_nn.append('saleElapsed')\n",
"cat_nn.remove('saleElapsed')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df_nn['saleElapsed'] = df_nn['saleElapsed'].astype(int)"
"cont_nn"
]
},
{
@@ -1375,7 +1365,7 @@
"1. What's a good type of plot for showing tree interpreter results?\n",
"1. What is the \"extrapolation problem\"?\n",
"1. How can you tell if your test or validation set is distributed in a different way than your training set?\n",
"1. Why do we make `saleElapsed` a continuous variable, even although it has less than 9,000 distinct values?\n",
"1. Why do we ensure `saleElapsed` is a continuous variable, even although it has less than 9,000 distinct values?\n",
"1. What is \"boosting\"?\n",
"1. How could we use embeddings with a random forest? Would we expect this to help?\n",
"1. Why might we not always use a neural net for tabular modeling?"