hosa.models.cnn.cnn_models.BaseCNN.prepare
- BaseCNN.prepare(x, y)[source]
Prepares the model by adding the layers to the estimator: input layer, GofLayers, flatten and dense layers.
- Parameters
x (numpy.ndarray) – Input data.
y (numpy.ndarray) – Target values (class labels in classification, real numbers in
regression). –