回答編集履歴
1
追記
answer
CHANGED
@@ -9,4 +9,11 @@
|
|
9
9
|
|
10
10
|
では、OneHot Encodingは学習がより不安定になるかもしれませんね。
|
11
11
|
|
12
|
-
また、メモリ容量の制約からOneHot Encodingが難しい場合もあるかと思います。
|
12
|
+
また、メモリ容量の制約からOneHot Encodingが難しい場合もあるかと思います。
|
13
|
+
|
14
|
+
【追記】
|
15
|
+
[Target Encoding Vs. One-hot Encoding with Simple Examples](https://medium.com/analytics-vidhya/target-encoding-vs-one-hot-encoding-with-simple-examples-276a7e7b3e64)
|
16
|
+
>Limitations of Target Encoding
|
17
|
+
Target encoding is dependent on the distribution of the target which means target encoding requires careful validation as it can be prone to overfitting. This method is also dataset-specific and will only show significant improvements some of the time.
|
18
|
+
|
19
|
+
Target Encodingするデータに偏りがある場合は過学習を起こしやすいみたいです。どちらの手法にもメリット・デメリットがありますのでデータによって使い分けるのが良いかと思われます。
|