Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.
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
8 changes: 7 additions & 1 deletion tagging_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,14 @@ def load_existing_tags():
size_cat = "10K<n<100K"
elif num_examples < 1000000:
size_cat = "100K<n<1M"
elif num_examples < 10000000:
size_cat = "1M<n<10M"
elif num_examples < 100000000:
size_cat = "10M<n<100M"
elif num_examples < 1000000000:
size_cat = "100M<n<1T"
else:
size_cat = "n>1M"
size_cat = "n>1T"

res = {
"task_categories": task_categories,
Expand Down