pytorch-forecasting icon indicating copy to clipboard operation
pytorch-forecasting copied to clipboard

Are raw mode predictions normalized?

Open AjinkyaBankar opened this issue 1 year ago • 0 comments

  • PyTorch-Forecasting version: 1.0.0
  • PyTorch version: 2.1.0
  • Python version: 3.9
  • Operating System: Linux

If we apply predict method as:

raw_predictions = net.predict(
    val_dataloader, mode="raw", return_x=True, n_samples=100, trainer_kwargs=dict(accelerator="cpu")
)

I want to know if the raw mode of the predict method returns raw_predictions.x and raw_predictions.output in the original format or in a normalized format. If they are normalized, how can I get x and output in the original format.

AjinkyaBankar avatar Dec 18 '23 00:12 AjinkyaBankar