You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
try:
print("Loaded Jax TimesFM.")
from timesfm.timesfm_jax import TimesFmJax as TimesFm
from timesfm import data_loader
except Exception as _:
print("Loaded PyTorch TimesFM.")
from timesfm.timesfm_torch import TimesFmTorch as TimesFm
can you change print rows so not to make users believe that Jax is correctly loaded, when that's not the case?
One understands that both Jax and Torch versions are loaded, while clearly is not, so now I understand hours of debugging not being able to load jax checkpoint as pointed in the finetuning notebook :)
Thanks, cheers
The text was updated successfully, but these errors were encountered:
In the init file:
try:
print("Loaded Jax TimesFM.")
from timesfm.timesfm_jax import TimesFmJax as TimesFm
from timesfm import data_loader
except Exception as _:
print("Loaded PyTorch TimesFM.")
from timesfm.timesfm_torch import TimesFmTorch as TimesFm
can you change print rows so not to make users believe that Jax is correctly loaded, when that's not the case?
One understands that both Jax and Torch versions are loaded, while clearly is not, so now I understand hours of debugging not being able to load jax checkpoint as pointed in the finetuning notebook :)
Thanks, cheers
The text was updated successfully, but these errors were encountered: