-
Hello everyone, I am encountering some confusion regarding the test set dataloader in tsai. I have created my import tsai.all as ta
C, label, splits = ta.combine_split_data([C_train, C_valid, C_test],
[label_train, label_valid, label_test])
tfms = [None, [ta.TSClassification()]]
batch_tfms = [ta.TSStandardize(by_sample=True, by_var=False)]
device = torch.device('cuda:0')
dls = ta.get_ts_dls(C, label, splits=splits, tfms=tfms, test_items=C_test,
batch_tfms=batch_tfms, bs=10000, shuffle_train=True, device=device) I need to extract rocket features, and therefore I require access to AttributeError: test However, when training other models such as Can someone please help me with this issue? Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Does |
Beta Was this translation helpful? Give feedback.
-
This is a bug that was reported in #724. In the latest version (0.3.4), the test set can be accessed correctly by using |
Beta Was this translation helpful? Give feedback.
This is a bug that was reported in #724.
In the latest version (0.3.4), the test set can be accessed correctly by using
dls[2]
.