alteryx / alteryx/evalml

Handle different categories in training vs holdout data for Ordinal Encoder

オープン
#3,889 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Python
スター
850
フォーク
96
PR マージ指標
30日以内にマージされた PR はありません

説明

If there are categories present in holdout data that weren't present in the training data, the OrdinalEncoder will not work unless `handle_unknown` and `unknown_value` are set correctly. This is problematic for the initial integration of the OrdinalEncoder into AutoMLSearch, as the default value for `handle_unknown` is error.

This can also be problematic for the Ordinal logical type, which will set the `order` according to the categories that are present, so if we were to try and set the instantiated Ordinal Logical Type on holdout data with different categories, it may produce a Woodwork error that the data `contains values that are not present in the order values provided`. We should investigate when we may trigger this Woodwork error, and I've opened up an issue in Woodwork to consider ways to handle this kind of thing (https://github.com/alteryx/woodwork/issues/1598).

We should look into how we can handle this. We have several options:
1. Handle this as part of automl search in the OrdinalEncoder instantiation by setting the parameters such that we handle unknowns gracefully - I think this may make the most sense, and could allow users to have further control of how they would want to handle those unknown values.
2. Wait to set the Encoder's categories until transform/allow updating the values at transform. I think waiting to set the categories at all until transform is probably putting too much logic into `transform`, and could also create the reverse problem of not having categories from the training data. More likely, we will want to consider allowing users to expand the categories if needed.
3. Change the default value for `handle_unknown` to no longer error - maybe to set the values to be nans?

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。