AttributeError: 'OneHotEncoder' object has no attribute 'active_features_'
时间: 2023-11-07 21:06:44 浏览: 220
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误是由于您正在使用的 OneHotEncoder 对象没有 active_features_ 属性导致的。active_features_ 是 sklearn 中 OneHotEncoder 的一个属性,用于表示每个特征中的活动特征的索引。请确保您在对 OneHotEncoder 对象调用 active_features_ 属性之前已经适当地拟合了数据。
阅读全文