keras model predict list of input tensors

Solutions on MaxInterview for keras model predict list of input tensors by the best coders in the world

showing results for - "keras model predict list of input tensors"
Jaylen
14 Jan 2018
1test_batch = tf.stack([img_tf1, img_tf2])
2# or
3test_batch = np.vstack([imgs_tf1, img_tf2])
4
5test_batch_size = 32
6predictions = model.predict(test_batch, batch_size=test_batch_size)
7
similar questions
queries leading to this page
keras model predict list of input tensors