将参数传递给特征工具中的聚合原语
Posted
技术标签:
【中文标题】将参数传递给特征工具中的聚合原语【英文标题】:Pass parameters to aggregation primitives in featuretools 【发布时间】:2020-02-27 10:26:31 【问题描述】:我正在使用featuretools
dfs
函数使用与时间相关的聚合原语(例如TimeSince
(https://docs.featuretools.com/api_reference.html#deep-feature-synthesis))生成我的特征矩阵
feature_matrix, feature_defs = ft.dfs(entityset=es,
target_entity="users",
max_depth=2,
agg_primitives=["sum", "max", "min",
"mean", "median", "count",
"avg_time_between"],
trans_primitives=["day", "year", "month", "weekday",
"time_since_previous", "time_since",
],
cutoff_time=cutoff_times,
cutoff_time_in_index=True)
如何将 [unit] 参数传递给 trans_primitives
参数以将时间单位更改为分钟、小时等?
【问题讨论】:
【参考方案1】:要将参数传递给聚合或转换原语,您可以使用参数创建原语的实例。这是将unit
参数传递给TimeSince
原语的方法。
from featuretools.primitives import TimeSince
ft.dfs(
...
trans_primitives=[TimeSince(unit='hours')]
)
【讨论】:
以上是关于将参数传递给特征工具中的聚合原语的主要内容,如果未能解决你的问题,请参考以下文章