Closed Riroaki closed 4 years ago
When I tried to use perturb functions and replace words with synonyms, this error occurred. And I checked the code and found the variable orig_ret would not be defined if no candidates are suggested. https://github.com/marcotcr/checklist/blob/64a810a3586f276521dda73d4223c1e1e5ae7151/checklist/text_generation.py#L278
orig_ret
To solve this, I suggest define the variable before assigning the value of new_ret to it.
new_ret
Thanks! Fixed in 832b5ba
When I tried to use perturb functions and replace words with synonyms, this error occurred. And I checked the code and found the variable
orig_ret
would not be defined if no candidates are suggested. https://github.com/marcotcr/checklist/blob/64a810a3586f276521dda73d4223c1e1e5ae7151/checklist/text_generation.py#L278To solve this, I suggest define the variable before assigning the value of
new_ret
to it.