You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we perform Categorify on a Target column, Tags.CATEGORICAL is added to the schem. For an internal project we need to remove this tag and we currently don't have a functionality for this.
We can create the below functionality which updates the schema:
If the column is truly no longer categorical, then one option here is tag to the column with Tags.CONTINUOUS (which will remove Tags.CATEGORICAL since no column can be both.)
Is the column subsequently processed by another operator that makes it non-categorical? Is it more that you want to exclude particular columns when selecting by tag?
When we perform Categorify on a Target column,
Tags.CATEGORICAL
is added to the schem. For an internal project we need to remove this tag and we currently don't have a functionality for this.We can create the below functionality which updates the schema:
schema[column_name].remove_tag(tag=[Tags.TAG_NAME])
The text was updated successfully, but these errors were encountered: