【发布时间】:2021-09-12 00:56:59
【问题描述】:
我需要翻译数据库中的大量文本。因此,我这几天一直在处理变压器和模型。我绝对不是数据科学专家,不幸的是我没有进一步了解。
问题始于较长的文本。第二个问题是定序器的通常最大令牌大小(512)。只是截断并不是一个真正的选择。 Here 我确实找到了解决方法,但它不能正常工作,结果是较长文本(>300 个序列)上的单词沙拉
这是一个示例(请忽略警告,这是另一个问题 - 目前并没有那么严重);
如果我采用示例句 2(55 序列)或 5 次(163 序列) - 没问题。
但它会弄乱,例如433 个序列(屏幕截图中的第三个绿色文本块)。
对于超过 510 个序列,我尝试将其拆分成块,如上面描述的链接中所示。但是这里的结果也很奇怪。
我很确定 - 我不止一个错误,而且低估了这个话题。 但我认为翻译大量文本没有其他(免费/便宜)方式。
你们能帮帮我吗?您看到哪些(思考)错误,您会建议如何解决这些问题?非常感谢。
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
import torch
if torch.cuda.is_available():
dev = "cuda"
else:
dev = "cpu"
device = torch.device(dev)
mname = 'Helsinki-NLP/opus-mt-de-en'
tokenizer = AutoTokenizer.from_pretrained(mname)
model = AutoModelForSeq2SeqLM.from_pretrained(mname)
model.to(device)
chunksize = 512
text_short = "Nach nur sieben Seiten appellierte man an die Wählerinnen und Wähler, sich richtig zu entscheiden, nämlich für Frieden, Freiheit, Sozialismus. "
text_long = text_short
#this loop is just for debugging/testing and simulating long text
for x in range(30):
text_long = text_long + text_short
tokens = tokenizer.encode_plus(text_long, return_tensors="pt", add_special_tokens=True, padding=False, truncation=False).to(device)
str_len = len(tokens['input_ids'][0])
if str_len > 510:
# split into chunks of 510 tokens, we also convert to list (default is tuple which is immutable)
input_id_chunks = list(tokens['input_ids'][0].split(chunksize - 2))
mask_chunks = list(tokens['attention_mask'][0].split(chunksize - 2))
cnt = 1
for tensor in input_id_chunks:
print('\033[96m' + 'chunk ' + str(cnt) + ': ' + str(len(tensor)) + '\033[93m')
cnt += 1
# loop through each chunk
# https://towardsdatascience.com/how-to-apply-transformers-to-any-length-of-text-a5601410af7f
for i in range(len(input_id_chunks)):
# add CLS and SEP tokens to input IDs
input_id_chunks[i] = torch.cat([
torch.tensor([101]).to(device), input_id_chunks[i], torch.tensor([102]).to(device)
])
# add attention tokens to attention mask
mask_chunks[i] = torch.cat([
torch.tensor([1]).to(device), mask_chunks[i], torch.tensor([1]).to(device)
])
# get required padding length
pad_len = chunksize - input_id_chunks[i].shape[0]
# check if tensor length satisfies required chunk size
if pad_len > 0:
# if padding length is more than 0, we must add padding
input_id_chunks[i] = torch.cat([
input_id_chunks[i], torch.Tensor([0] * pad_len).to(device)
])
mask_chunks[i] = torch.cat([
mask_chunks[i], torch.Tensor([0] * pad_len).to(device)
])
input_ids = torch.stack(input_id_chunks)
attention_mask = torch.stack(mask_chunks)
input_dict = {'input_ids': input_ids.long(), 'attention_mask': attention_mask.int()}
outputs = model.generate(**input_dict)
#this doesnt work - following error comes to the console --> "host_softmax" not implemented for 'Long'
#probs = torch.nn.functional.softmax(outputs[0], dim=-1)
# probs
# probs = probs.mean(dim=0)
# probs
else:
tokens["input_ids"] = tokens["input_ids"][:, :512] #truncating normally not necessary
tokens["attention_mask"] = tokens["attention_mask"][:, :512]
outputs = model.generate(**tokens)
decoded = tokenizer.decode(outputs[0], skip_special_tokens=True)
print('\033[94m' + str(str_len))
print('\033[92m' + decoded)
备注;以下库是必需的:
pip3 install torch==1.9.0+cu102 torchvision==0.10.0+cu102 torchaudio===0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
pip 安装变压器
pip 安装语句
【问题讨论】:
-
小提示:你试过在他们的论坛寻求帮助吗?
-
谢谢。没有针对长句子(标记过多)和奇怪结果的问题进行明确研究。我想,我需要更多地学习这个主题。还尝试了 NLTKs 句子分割,这会导致 GPU 上的 RAM 很快耗尽。我找到了一个似乎也做得不错的 python lib(分句器)。我会试试这个并更新这个线程。
标签: python translation huggingface-transformers huggingface-tokenizers