matlab建立两个隐含层的代码mlnet4csharp
这是C#包装器,可让您利用MATLAB的神经网络工具箱来创建,配置,训练和模拟两层神经网络。
需要MATLAB。
范例程式码
//
Initializes
the
wrapper
starting
a
MATLAB
session
Wrapper
wrapper
=
new
Wrapper();
//
This
is
our
training
set
of
3
examples
double
[,]
input
=
new
double
[
3
,
2
]
{
{
0.1
,
0.2
},
{
0.3
,
0.4
},
{
0.5
,
0.6
}
};
double
[,]
output
=
new
double
[
3
,
1
]
{
{
0
},
{
0.8
},
{
1
}
};
//
Creates
a
network
with
2
input
units
and
5
hidden
units
Net
net
=
new
Net(wrapper,
2
,
5
);
//
Trains
using
MATLAB
net.T
2021-11-23 08:02:07
8KB
系统开源
1