尝试从Azure机器学习中检索数据时出现以下错误
Error: LibraryExecutionError
Target: Score Model (AFx Library)
Message: table: The data set being scored must contain all features used during training, missing feature(s): 'NA'.如果我在发送到Azure的值中包含NA,我会收到以下消息
Parsing of input vector failed. Verify the input vector has the correct number of columns and data types有谁知道如何解决这个问题吗?
詹姆斯
发布于 2016-12-20 23:16:41
错误似乎表明,您从训练实验中生成的模型使用了名为"NA“的列,而您的评分数据集中不存在此列。
发布于 2017-01-22 09:53:20
没有太多的细节,但是你以前有过这个因素的na值吗?这听起来像是您有一个分类因子,并且正在输入一个没有匹配的值,并且您的模型没有选中“允许未知类别”复选框。
https://stackoverflow.com/questions/41245211
复制相似问题