You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was looking at how you parsed the captions, but in adversarial_attack/numeral.py the program
hangs with a sentence ending in a number, with no period.
detect_number("she is 13")
I made a workaround by converting line 24, continue to break. Could this cause unintended behavior?
The text was updated successfully, but these errors were encountered:
I guessed that this function takes the numbers that have nouns after them, but I think this wouldn't cause much problem in that case.
A non-working case would be "the number of zebras in this picture is three" but it is an unlikely case though...
Thanks for the great repo!
I was looking at how you parsed the captions, but in
adversarial_attack/numeral.py
the programhangs with a sentence ending in a number, with no period.
I made a workaround by converting line 24,
continue
tobreak
. Could this cause unintended behavior?The text was updated successfully, but these errors were encountered: