public INeuralNetwork GetNetwork() { if (_network is null) { _network = _storage.Load(); } if (_network is null) { return(null); } return(_network); }