如何知道Featuretools生成的特征类型(数字、类别)?
发布于 2019-12-30 22:45:41
在生成的特征定义中,有一个variable_type属性来查看特征的类型。
feature_matrix, feature_defs = ft.dfs(target_entity='customers', entityset=es)
feature_defs[1], feature_defs[1].variable_type(<Feature: COUNT(sessions)>, featuretools.variable_types.variable.Numeric)如果有帮助,请告诉我。
https://stackoverflow.com/questions/59531444
复制相似问题