示例#1
0
文件: LSTM.cs 项目: fcmai/brightwire
 public Lstm(RecurrentLayerComponent c, RecurrentLayerComponent i, RecurrentLayerComponent f, RecurrentLayerComponent o, IActivationFunction activation)
 {
     _c          = c;
     _i          = i;
     _f          = f;
     _o          = o;
     _activation = activation;
 }
示例#2
0
 public SimpleRecurrent(RecurrentLayerComponent w)
 {
     _w = w;
 }