We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Which dataset/datasets have you an issue with?
AbnormalHeartbeat ( https://www.timeseriesclassification.com/description.php?Dataset=AbnormalHeartbeat )
Where did you download the data from (e.g. UCR or timeseriesclassification.com)?
From timeseriesclassification.com (AND using aeon.datasets.load_classification, same issue)
What's the issue?
The downloaded dataset doesn't correspond to the data described on the TSC website. Instead, it is the same dataset as BinaryHeartbeat:
import numpy as np import aeon.datasets abnormal_heartbeat = datasets.load_classification("AbnormalHeartbeat") binary_heartbeat = datasets.load_classification("BinaryHeartbeat") np.array_equal(binary_heartbeat[0], abnormal_heartbeat[0]) # True np.array_equal(binary_heartbeat[1], abnormal_heartbeat[1]) # True
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Which dataset/datasets have you an issue with?
AbnormalHeartbeat ( https://www.timeseriesclassification.com/description.php?Dataset=AbnormalHeartbeat )
Where did you download the data from (e.g. UCR or timeseriesclassification.com)?
From timeseriesclassification.com (AND using aeon.datasets.load_classification, same issue)
What's the issue?
The downloaded dataset doesn't correspond to the data described on the TSC website. Instead, it is the same dataset as BinaryHeartbeat:
The text was updated successfully, but these errors were encountered: