mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
import re
|
|
|
|
import torch
|
|
|
|
|
|
class InstructBlipMMBenchPostProcessor:
|
|
""""Post processor for MiniGPT-4 on MMBench."""
|
|
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
def __call__(self, output_token: torch.tensor, tokenizer) -> str:
|
|
# convert output id 0 to 2 (eos_token_id)
|
|
output_token[output_token == 0] = 2
|
|
output_text = tokenizer.decode(output_token,
|
|
add_special_tokens=False) # noqa
|
|
output_text = self._extract_key_words(output_text.strip())
|
|
return output_text
|
|
|
|
def _extract_key_words(self, output_text: str) -> str:
|
|
|
|
output_text = output_text.split('###')[0]
|
|
output_text = output_text.split('Assistant:')[-1].strip()
|
|
output_text = output_text.strip('</s><s>')
|
|
output_text = output_text.strip('</Img>')
|
|
output_text = output_text.strip()
|
|
pattern = re.compile(r'([A-Z]\.)')
|
|
res = pattern.findall(output_text)
|
|
if len(res) > 0:
|
|
output_text = res[0][:-1]
|
|
return output_text
|