ngruver / llmtime

https://arxiv.org/abs/2310.07820
MIT License
628 stars 139 forks source link

import darts.models error #21

Open Flipped-May opened 6 months ago

Flipped-May commented 6 months ago

hello, when I run the demo.ipynp, there is a mistake. I feel confused. could you help me:

ImportError Traceback (most recent call last) File /home/ssd2/mashichao/anaconda3/envs/llmtime_new/lib/python3.9/site-packages/sklearn/__check_build/init.py:45 44 try: ---> 45 from ._check_build import check_build # noqa 46 except ImportError as e:

ImportError: dlopen: cannot load any more object with static TLS

During handling of the above exception, another exception occurred:

ImportError Traceback (most recent call last) /home/ssd2/mashichao/llmtime-main/demo.ipynb Cell 1 line 1 12 from models.utils import grid_iter 13 from models.promptcast import get_promptcast_predictions_data ---> 14 from models.darts import get_arima_predictions_data 15 from models.llmtime import get_llmtime_predictions_data 16 from data.small_context import get_datasets

File /home/ssd2/mashichao/llmtime-main/models/darts.py:3 1 import pandas as pd 2 from darts import TimeSeries ----> 3 import darts.models 4 import numpy as np 5 from darts.utils.likelihood_models import LaplaceLikelihood, GaussianLikelihood ... to build the package before using it: run python setup.py install or make in the source directory.

If you have used an installer, please check that it is suited for your Python version, your operating system and your platform.