You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the PyGAD's solution to make predictions using the Keras model.
78
+
79
+
Parameters
80
+
----------
81
+
model : TYPE
82
+
The Keras model.
83
+
solution : TYPE
84
+
A single PyGAD solution as 1D vector.
85
+
data : TYPE
86
+
The data or a generator.
87
+
batch_size : TYPE, optional
88
+
The batch size (i.e. number of samples per step or batch). The default is None. Check documentation of the Keras Model.predict() method for more information.
89
+
verbose : TYPE, optional
90
+
Verbosity mode. The default is 0. Check documentation of the Keras Model.predict() method for more information.
91
+
steps : TYPE, optional
92
+
The total number of steps (batches of samples). The default is None. Check documentation of the Keras Model.predict() method for more information.
0 commit comments