예제 #1
0
 public INeuralNetwork GetNetwork()
 {
     if (_network is null)
     {
         _network = _storage.Load();
     }
     if (_network is null)
     {
         return(null);
     }
     return(_network);
 }