了解Matlab模式识别神经网络图

Noobmaster69

我目前正在进行一个有关车辆分类的项目,该项目现已接近完成,但是我对从神经网络获得的图块感到有些困惑

我使用了230张图像[90=Hatchbacks,90=Sedans,50=SUVs]对80个特征点进行了分类。因此,我vInput是一个[80x230]矩阵,而我vTarget是一个[3x230]矩阵

分类器效果很好,但我不了解这些图或它们是否异常。

我的神经网络
神经网络

然后,我在PLOT部分中单击了这4个图,并依次得到它们。

性能图
表现
训练状态
训练状态
混淆图
混淆图
接收器工作特性图
ROC图


I know the images they are a lots of images but I know nothing about them. On the matlab documentation they just train the system and plot the graph
So please someone briefly explain them to me or show me some good links to learn them.

Leonid Beschastny

First two plots shows training statistscs.

Performance Plot shows you mean square error dynamics for all your datasets in logarithmic scale. Training MSE is always decreasing, so its validation and test MSE you should be interested in. Your plot shows a perfect training.

Training State shows you some other training statistics.

Gradient is a value of backpropagation gradient on each iteration in logarithmic scale. 5e-7 means that you reached the bottom of the local minimum of your goal function.

Validation fails are iterations when validation MSE increased its value. A lot of fails means owertrainig, but in you case its OK. Matlab automatically stops training after 6 fails in a row.

The other two plots shows you the results of your network simulation after training.

Confusion Plot. In your case its 100% accurate. Green cells represent correct answers and red cells represent all types of incorrect answers.

For example, you may read the first one (training set) as: "59 samples from the class 1 was corrctly classified as class 1, 13 samples from the class 2 was corrctly classified as class 2 and 6 samples from the class 3 was corrctly classified as class 3".

接收器工作特性图显示相同的内容,但方式不同-使用ROC曲线

在此处输入图片说明

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

MATLAB中的神经网络成本函数

来自分类Dev

在Matlab中实现用于元音识别的神经网络-输入层单元和结构?

来自分类Dev

了解Matlab模式识别神经网络图

来自分类Dev

应用神经网络识别数字

来自分类Dev

将Matlab神经网络转换为C ++神经网络

来自分类Dev

使用Encog的神经网络阵列模式识别-如何测试下一个模式?

来自分类Dev

神经网络系统识别

来自分类Dev

Theano / Lasagne / Nolearn神经网络图像输入

来自分类Dev

在Matlab中获取神经网络的神经元权重

来自分类Dev

与神经网络进行异或运算(Matlab)

来自分类Dev

在模式识别问题中最好使用什么?机器学习还是神经网络?

来自分类Dev

神经网络:了解theano库

来自分类Dev

TensorFlow或Theano:他们如何基于神经网络图知道损失函数导数?

来自分类Dev

使用神经网络提取模式

来自分类Dev

卷积神经网络的识别类型

来自分类Dev

了解随机起始权重对神经网络性能的影响

来自分类Dev

我的说话人识别神经网络无法正常工作

来自分类Dev

神经网络中的损耗图

来自分类Dev

如何增加神经网络可以识别的图像范围?

来自分类Dev

应用神经网络识别数字

来自分类Dev

MATLAB神经网络:它是如何工作的?

来自分类Dev

手写识别的神经网络?

来自分类Dev

与神经网络进行异或运算(Matlab)

来自分类Dev

形状识别神经网络性能不佳

来自分类Dev

如何在Matlab的神经网络中改善数字识别预测?

来自分类Dev

使用神经网络提取模式

来自分类Dev

Matlab中的神经网络拟合

来自分类Dev

神经网络MNIST数字识别

来自分类Dev

神经网络的精度图波动很大