What is the arch difference between bolt and original chronos? #240
-
In the readme and doc, I got very little information of the details of bolt, except that it is better, I know nothing. |
Beta Was this translation helpful? Give feedback.
Answered by
abdulfatir
Dec 20, 2024
Replies: 1 comment 1 reply
-
Hey @2catycm, the best resource for details on the Chronos-Bolt model's architecture is the code. See this: https://github.com/amazon-science/chronos-forecasting/blob/main/src/chronos/chronos_bolt.py In short, Chronos-Bolt retains the T5 architecture but does patch-level modeling instead. To enable this we need:
If you have specific questions, please feel free to ask in this thread. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lostella
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @2catycm, the best resource for details on the Chronos-Bolt model's architecture is the code. See this: https://github.com/amazon-science/chronos-forecasting/blob/main/src/chronos/chronos_bolt.py
In short, Chronos-Bolt retains the T5 architecture but does patch-level modeling instead. To enable this we need:
d_model
-dimensional representations.If you have specific questions, please feel free to ask in this thread.