2

2 層フィードフォワード ニューラル ネットワークの決定境界面を視覚化 (つまり、プロット) するプログラムはどこにありますか? レイヤーが 1 つの場合、デシジョン サーフェスは単なる直線の集まりです。しかし、2 つの層 (およびおそらく各ニューロンのシグモイドしきい値) を使用すると、決定面は非常に複雑で非線形になり、バラバラになることさえあります。ネットワーク上で実践的な「感触」を得るためのインタラクティブなツールがあると便利です...教育目的と研究の両方のために:)

4

1 に答える 1

0

It depends from the way, your neural network is implemented. If to trust your tags, you used wolfram-mathematica for implementation. It has some tools for visualisation: http://www.wolfram.com/training/courses/vis411.html http://reference.wolfram.com/language/ref/ListPointPlot3D.html etc... For C# visualisation I use http://ilnumerics.net/ And for visualisation in Octave I use built in function mesh ( for 3d ) and plot for 2D. You just need to choose what to plot. Predicted values, input values, average of two, three, four input values.

于 2015-03-16T10:21:31.733 に答える