gpt4 book ai didi

python - Featuretools 分类处理

转载 作者:行者123 更新时间:2023-11-28 17:03:58 24 4
gpt4 key购买 nike

Featuretools 提供了处理分类变量的集成功能

variable_types={"product_id": ft.variable_types.Categorical} https://docs.featuretools.com/loading_data/using_entitysets.html

但是,为了与 Featuretools 的最佳兼容性,这些应该是 strings 还是 pandas.Category 类型?

编辑

此外,是否需要手动指定所有列,如 https://github.com/Featuretools/predict-appointment-noshow/blob/master/Tutorial.ipynb还是会根据适合的 Pandas 数据类型自动推断出它们

import featuretools.variable_types as vtypes
variable_types = {'gender': vtypes.Categorical,
'patient_id': vtypes.Categorical,
'age': vtypes.Ordinal,
'scholarship': vtypes.Boolean,
'hypertension': vtypes.Boolean,
'diabetes': vtypes.Boolean,
'alcoholism': vtypes.Boolean,
'handicap': vtypes.Boolean,
'no_show': vtypes.Boolean,
'sms_received': vtypes.Boolean}

最佳答案

将数据加载到 Featuretools 时,您应该使用 Pandas Category dtype。与使用字符串相比,这将大大节省内存使用量。

加载数据时,您无需手动指定每个变量类型。如果未提供,Featuretools 将尝试从 Pandas dtype 推断它。

关于python - Featuretools 分类处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52463356/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com