Skip to content

Commit 4825458

Browse files
committed
Typo: Ooe-hot -> one-hot
1 parent 950f26c commit 4825458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/05.04-Feature-Engineering.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"It turns out that this is not generally a useful approach in Scikit-Learn: the package's models make the fundamental assumption that numerical features reflect algebraic quanitites.\n",
8787
"Thus such a mapping would imply, for example, that *Queen Anne < Fremont < Wallingford*, or even that *Wallingford - Queen Anne = Fremont*, which (niche demographic jokes aside) does not make much sense.\n",
8888
"\n",
89-
"In this case, one proven technique is to use *Ooe-hot encoding*, which effectively creates extra columns indicating the presence or absence of a category with a value of 1 or 0, respectively.\n",
89+
"In this case, one proven technique is to use *one-hot encoding*, which effectively creates extra columns indicating the presence or absence of a category with a value of 1 or 0, respectively.\n",
9090
"When your data comes as a list of dictionaries, Scikit-Learn's ``DictVectorizer`` will do this for you:"
9191
]
9292
},

0 commit comments

Comments
 (0)