Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
calpt committed Aug 10, 2024
1 parent 39073d6 commit 484efd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/hf_hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def convert_hf_dataset_to_subtask(dataset_info):
break
if task is None:
task = "other"
subtask = dataset_info["id"]
subtask = dataset_info["id"].replace("/", "_")
displayname = dataset_info["cardData"].get("pretty_name", subtask.replace("_", " ").title())
# TODO can we still access descriptions?
description = dataset_info.get("description", "")
Expand Down

0 comments on commit 484efd9

Please sign in to comment.