1.导库
使用TCN模型进行概率预测的例子,非常接近https://arxiv.org/abs/1906.04397中描述的DeepTCN
模型。
from utils import fix_pythonpath_if_working_locally
fix_pythonpath_if_working_locally()
%matplotlib inline
import pandas as pd
from darts.models import TCNModel
import darts.utils.timeseries_generation as tg
from darts