MATLAB 神经网络

发布于 2024-11-06 15:18:16 字数 711 浏览 0 评论 0原文

我正在使用一个简单的 XOR 输入和输出数据集,以便在尝试更困难的操作之前训练神经网络,但由于某种原因它不起作用。

有人可以解释一下我做错了什么吗? 这是我的代码:

    %user specified values
hidden_neurons = 3;
epochs = 10000;

t_input = [1 1; 1 0; 0 1; 0 0];
t_output = [1; 0; 0; 1];
te_input = [1 1; 1 0; 0 1; 0 0];

net = newff(t_input, t_output, 1);
net = init(net);
net = train(net, t_input, t_output);
net.trainParam.show = 50;
net.trainParam.lr = 0.25;
net.trainParam.epochs = epochs;
net.trainParam.goal = 1e-5;
net = train(net, t_input, t_output);
out = sim(net, te_input);

这是我的错误消息:

???使用 ==> 时出错network.train at 145 目标的大小不正确 网络。矩阵必须有 2 列。

错误==> 11 网的小NN = 训练(网络,t_输入,t_输出);

I'm using a simple XOR input and output data set in order to train a neural network before attempting anything harder but for some reason it won't work.

may someone please explain what I am doing wrong please?
This is my code:

    %user specified values
hidden_neurons = 3;
epochs = 10000;

t_input = [1 1; 1 0; 0 1; 0 0];
t_output = [1; 0; 0; 1];
te_input = [1 1; 1 0; 0 1; 0 0];

net = newff(t_input, t_output, 1);
net = init(net);
net = train(net, t_input, t_output);
net.trainParam.show = 50;
net.trainParam.lr = 0.25;
net.trainParam.epochs = epochs;
net.trainParam.goal = 1e-5;
net = train(net, t_input, t_output);
out = sim(net, te_input);

THis is my error message:

??? Error using ==> network.train at 145 Targets are incorrectly sized for
network. Matrix must have 2 columns.

Error in ==> smallNN at 11 net =
train(net, t_input, t_output);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋日私语 2024-11-13 15:18:16

您必须将样本放在列上而不是行上(就像世界上所有的 NN 软件一样),因此更改数据集创建行:

t_input = [1 1; 1 0; 0 1; 0 0]';
t_output = [1; 0; 0; 1]';
te_input = [1 1; 1 0; 0 1; 0 0]';

现在可以了。

You must have your samples on columns and not rows (like all the NN software in the world do), so change the data sets creation lines in:

t_input = [1 1; 1 0; 0 1; 0 0]';
t_output = [1; 0; 0; 1]';
te_input = [1 1; 1 0; 0 1; 0 0]';

Now it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文