Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit fd60c83

Browse files
authored
Merge pull request #11 from gchhablani/gchhablani-patch-1
Update tagging_app.py
2 parents 927d443 + 15ff108 commit fd60c83

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

tagging_app.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,20 @@ def load_existing_tags():
419419
size_cat = "10K<n<100K"
420420
elif num_examples < 1000000:
421421
size_cat = "100K<n<1M"
422+
elif num_examples < 10000000:
423+
size_cat = "1M<n<10M"
424+
elif num_examples < 100000000:
425+
size_cat = "10M<n<100M"
426+
elif num_examples < 1000000000:
427+
size_cat = "100M<n<1B"
428+
elif num_examples < 10000000000:
429+
size_cat = "1B<n<10B"
430+
elif num_examples < 100000000000:
431+
size_cat = "10B<n<100B"
432+
elif num_examples < 1000000000000:
433+
size_cat = "100B<n<1T"
422434
else:
423-
size_cat = "n>1M"
435+
size_cat = "n>1T"
424436

425437
res = {
426438
"task_categories": task_categories,

0 commit comments

Comments
 (0)