We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56d0133 commit 87c11ccCopy full SHA for 87c11cc
category_encoders/basen.py
@@ -2,6 +2,7 @@
2
3
import numpy as np
4
import math
5
+import warnings
6
from sklearn.base import BaseEstimator, TransformerMixin
7
from category_encoders.ordinal import OrdinalEncoder
8
from category_encoders.utils import get_obj_cols, convert_input
@@ -193,6 +194,8 @@ def inverse_transform(self, Xt):
193
194
p: array, the same size of X_in
195
196
"""
197
+
198
+ warnings.warn('Inverse transform in basen is a currently experimental feature, please be careful')
199
X = Xt.copy(deep=True)
200
201
# first check the type
0 commit comments