Add Option to Return (Grouped) Logits
`classify` method allows to pass the parameter `return_logits`. This option will set the grouped
logits to the `LLM4ClassificationOutput` class. In case of multiple words for a label (e.g., `Vbz([['good', 'great'], ['bad']])`),
the logits are averaged before return (i.e., The logits for `['good', 'great'],` will be averaged).
Bugfixes
- Fix verbalizer not updated after calling `set_prompt`.
- Fix bug when using Dict[str, List[str]] as a verbalizer with the `Vbz` class.