尝试为两级分类创建多层神经网络时出错

时间:2016-11-27 00:53:18

标签: azure-machine-learning-studio

我目前正在尝试使用以下Net#代码创建一个双层神经网络:

input Data auto;
hidden H1 1600 from Data all;
hidden H2 1600 from H1 all;
output Result auto from H2;

由于某些原因,当我运行实验时,我收到此错误:

requestId = cbc3ec794f0a48799b66f8a53b6cc1f3 errorComponent=Module. taskStatusCode=400. {
    "Exception":{            
        "ErrorId":"LibraryException",
        "ErrorCode":"1000",
        "ExceptionType":"ModuleException",
        "Message":"Error 1000: TLC library exception: Exception of type 'Microsoft.Numerics.AFxLibraryException' was thrown.",
        "Exception":{
            "Library":"TLC",
            "ExceptionType":"LibraryException",
            "Message":"Exception of type 'Microsoft.Numerics.AFxLibraryException' was thrown."
        }
    }
}
Error: Error 1000: TLC library exception: Exception of type 'Microsoft.Numerics.AFxLibraryException' was thrown. Process exited with error code -2

当我使用最初显示的普通单层构建器界面时,我没有收到此错误。在诊断时,我们非常感谢任何帮助。

0 个答案:

没有答案