【发布时间】:2022-01-06 01:56:19
【问题描述】:
我了解reformer 能够处理大量令牌。但是它似乎不支持摘要任务:
>>> from transformers import ReformerTokenizer, ReformerModel
>>> from transformers import pipeline
>>> summarizer = pipeline("summarization", model="reformer")
404 Client Error: Not Found for url: https://huggingface.co/reformer/resolve/main/config.json
...
您将如何“手动”构建管道以使用重组器进行汇总?
【问题讨论】: