I’m talking about predicting more than one item, using a loaded Learner.
Currently, data is empty (loaded with load_empty()) as in the tutorials.
All the examples and tutorials talk about predicting one item only, is there any way to get predictions on multiple objects without calling .predict() n times or implementing get_preds() on my own?
Thanks ![]()
The message I replied to is:
For now there is no script for this, but you can apply your model to a new object by calling
learn.model(x)(just make surexis on a the same device as the model).