Package deepnetts.automl
Interface NetworkFactory<T extends NeuralNetwork>
- Type Parameters:
 T- Type of network architecture that factory creates.
- All Known Implementing Classes:
 FeedForwardNetworkFactory
public interface NetworkFactory<T extends NeuralNetwork>
Base interface for all network factories.
 Network factory creates a neural network architecture using specified properties.
- 
Method Summary
Modifier and TypeMethodDescriptionCreates and returns a neural network of specified type 
- 
Method Details
- 
createNeuralNetwork
Creates and returns a neural network of specified type- Parameters:
 prop- properties of a neural network to create- Returns:
 - neural network of specified type
 
 
 -