h2o.ai - 流程 UI 未检测要转换为时间的日期格式

h2o.ai - Flow UI not detecting date formatting to convert to Time

我正在使用 h2oflow ui 上传一个 csv 文件来训练模型。当我上传文件并在解析前编辑列类型时,这就是我将日期列设置为:

解析后,数据摘要显示所有日期列值都是'missing',使用view data按钮查看数据显示它们确实是空白(.)。

正在寻找 here 可接受的日期格式,它说:

"The first format is for dates formatted as yyyy-MM-dd. Year is a four-digit number, the month is a two-digit number ranging from 1 to 12, and the day is a two-digit value ranging from 1 to 31. This format can also be followed by a space and then a time (specified below)."

我已经尝试过这种格式,有和没有(见上图)单个数字的前导零,结果仍然与 h2o 解析日期字段和空白的结果相同,如下所示:

这是怎么回事,我该如何解决。谢谢:)

找到问题了。在原post中提到的文档中,指定日期应为yyyy-mm-dd。我正在以 yyyy/mm/dd 格式将日期数据输入 h2o。将日期信息更改为 yyyy-mm-dd 格式似乎已经解决了问题(验证前两个日期是否正确映射到前两个输出 epoch 时间戳)。