Skip to content
New issue

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

[ISSUE] Confusion between AbnormalHeartbeat and BinaryHeartbeat #112

Open
PAUL-BERNARD opened this issue Oct 25, 2024 · 0 comments
Open

Comments

@PAUL-BERNARD
Copy link

PAUL-BERNARD commented Oct 25, 2024

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant