Replies: 1 comment 2 replies
-
I'm not sure what's causing that issue. from tsai.all import *
X, y, splits = get_UCR_data('MoteStrain', split_data=False)
tfms = [None, TSClassification()]
batch_tfms = TSStandardize(by_sample=True)
dls = get_ts_dls(X, y, splits=splits, tfms=tfms, batch_tfms=batch_tfms)
learn = ts_learner(dls, InceptionTimePlus, metrics=[accuracy, RocAucBinary(), APScoreBinary()], cbs=[ShowGraph()])
learn.fit_one_cycle(10, 1e-2)
learn.plot_confusion_matrix()
learn.plot_confusion_matrix() |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've noticed that if I call the learn.plot_confusion_matrix() 3 times, the 1st time is different from the 2nd and 3rd times.
Is this expected?
Beta Was this translation helpful? Give feedback.
All reactions