Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aeon/datasets/monster_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def load_monster_dataset_names() -> list[str]:
list of str
A list of available Monster dataset names.
"""
_check_soft_dependencies("huggingface-hub")
_check_soft_dependencies("huggingface_hub")
from huggingface_hub import list_datasets

datasets = list_datasets(author=ORG_ID)
Expand Down Expand Up @@ -87,7 +87,7 @@ def load_monster_dataset(
Time Series Evaluation Repository. arXiv preprint arXiv:2502.15122.

"""
_check_soft_dependencies("huggingface-hub")
_check_soft_dependencies("huggingface_hub")
from huggingface_hub import hf_hub_download
from huggingface_hub.utils import HfHubDownloadError

Expand Down
Loading