Skip to content

Commit

Permalink
fixed generation of tagging csv line.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryogrid committed Oct 24, 2024
1 parent c664571 commit 9e3fe98
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions colab_env/tagging.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ def predict(
)
sorted_character_strings_str: List[str] = [x[0] for x in sorted_character_strings]
sorted_character_strings_str = [x.replace(' ', '_') for x in sorted_character_strings_str]
ret_string += ","
ret_string += ",".join(sorted_character_strings_str)

ret_strings.append(ret_string)
Expand Down

0 comments on commit 9e3fe98

Please sign in to comment.