AFx库库异常:无法找到文件:.. \ .. \ Dataset2 \ Dataset2.dataset。 。 (错误1000)

时间:2016-12-20 10:49:44

标签: r azure azure-machine-learning-studio

我有一个简单的Azure机器学习实验,有两个输入块(“手动输入数据”),它们将输入传递给绑定两个输入的“执行R脚本”块。

当两个输入值相同时,我得到一个AFx库异常FileNotFound。当两个输入值不同时,一切正常。

这是R代码和实验大纲。

d1 <- maml.mapInputPort(1) # class: data.frame
d2 <- maml.mapInputPort(2) # class: data.frame

print(d1)
print(class(d1))

print(d2)
print(class(d2))

https://www.codeigniter.com/userguide3/general/managing_apps.html

我在两个输入块中设置相同输入数据时得到的错误,更详细的内容如下:

    [Critical]     Error: Error 1000: AFx Library library exception: File: ..\..\Dataset2\Dataset2.dataset cannot be found.
    [Critical]     {"InputParameters":{"DataTable":[{"Rows":2,"Columns":1,"estimatedSize":12001280,"ColumnTypes":
{"System.Int32":1},"IsComplete":true,"Statistics":
{"0":[1.5,1.5,1.0,2.0,0.70710678118654757,2.0,0.0]}}]},"OutputParameters":
[],"ModuleType":"LanguageWorker","ModuleVersion":" 
Version=6.0.0.0","AdditionalModuleInfo":"LanguageWorker, Version=6.0.0.0, 
Culture=neutral, PublicKeyToken=69c3241e6f0468ca;
Microsoft.MetaAnalytics.LanguageWorker.LanguageWorkerClientRS;
RunRSNR","Errors":"Microsoft.Analytics.Exceptions.ErrorMapping+ModuleException: 
Error 1000: AFx Library library exception: File: ..\\..\\Dataset2
\\Dataset2.dataset cannot be found. ---> 
Microsoft.Numerics.AFxLibraryFileNotFoundException: File: ..\\..\\Dataset2
\\Dataset2.dataset cannot be found.\r\n   at 
Microsoft.Analytics.IO.Local.DataTableReader..ctor(String filePath)\r\n   at 
Microsoft.MetaAnalytics.DllModuleHost.DataLab.Handlers.DataTableDatasetHandler.H
andleArgumentString(String argument, ParameterInfo paramInfo)\r\n   at 
Microsoft.MetaAnalytics.DllModuleHost.ParameterArgumentBinder.InitializeParamete
rValues(MethodInfo method, Dictionary`2 moduleDescription)\r\n   at 
Microsoft.MetaAnalytics.DllModuleHost.DllModuleMethod.Execute(Dictionary`2 
moduleDescription)\r\n   at 
Microsoft.MetaAnalytics.DllModuleHost.Program.Main(String[] args)\r\n   --- End 
of inner exception stack trace ---","Warnings":[],"Duration":"00:00:00.5755180"}
    Module finished after a runtime of 00:00:01.4722617 with exit code -2
    Module failed due to negative exit code of -2

非常感谢任何建议,Flo。

1 个答案:

答案 0 :(得分:0)

你应该摆脱引用第二个数据集的R代码,因为你只有一个输入数据集。