Replies: 3 comments
-
|
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply. I can guess and understand their general functions from their names. I would like to confirm that, apart from the differences in various transformations of the dataset, they should be consistent in the computational process. |
Beta Was this translation helpful? Give feedback.
-
The checkpoint from MoiraiPretrain is used to load into MoiraiForecast, so in that sense, they are consistent. There are differences in processing the inputs to each object. |
Beta Was this translation helpful? Give feedback.
-
In MoiraiForecast, you have implemented both
create_predictor
andforward
. What is the difference between these two methods, and if there are differences, what scenarios should they be used in respectively?At the same time, in the directory
src/uni2ts/model/moirai
, there is a file namedmodule.py
. Additionally, there are three files namedpretrain
,finetune
, andforecast
, each defining a different class such asMoiraiPretrain
. If one wishes to use a pre-trained model to obtain the model's output, what differences would there be in calling these three? It seems that the inputs in theirforward
methods are also different?Beta Was this translation helpful? Give feedback.
All reactions