Confusion about keras Model: __call__ vs. call vs. predict methods
Adding to @Dmitry Kabanov, they are similar yet they aren’t exactly the same thing. If you care about performance, need to look in to critical differences between them. model.predict model(x) loops over the data in batches which means means that predict() calls can scale to very large arrays. happens in-memory and doesn’t scale not differentiable … Read more