blog icon indicating copy to clipboard operation
blog copied to clipboard

PatchTSMixer tutorial missing inference example

Open emanuelshalev opened this issue 1 year ago • 1 comments

The tutorial shows how to run evaluation but is missing a bare bone example of how to use the model to run inference .

emanuelshalev avatar Jun 04 '24 03:06 emanuelshalev

for inference, you can directly use model.forward() to get the predictions dict, if your input is tensor

otherwise - if input is test dataset, then you can do model.predict(). All our APIs are huggingface based and used the standard predict and forward calls..

vijaye12 avatar Jun 04 '24 08:06 vijaye12