I am trying to use the Hugging Face library, specifically the PatchTSMixerForPrediction module, but I’m encountering the following error. Based on my research, it seems that this module is not included in the transformers package by default. Could anyone help me figure out how to download or install this library?.
My Code is
from transformers import AutoTokenizer, PatchTSMixerForPrediction
and the error pop up is:
ImportError: cannot import name ‘PatchTSMixerForPrediction’ from ‘transformers’
