我正在尝试使用python中的from summarizer import Summarizer, TransformerSummarizer
(又名Bert -extract -summarizer)库与Bert, Gpt-2等模型进行文本摘要…
但是当我尝试这个导入时,我得到一个错误(即。警告但我不能运行我的代码):
UserWarning: "sox" backend is being deprecated. The default backend will be changed to "sox_io" backend in 0.8.0 and "sox" backend will be removed in 0.9.0. Please migrate to "sox_io" backend. Please refer to https://github.com/pytorch/audio/issues/903 for the detail.
warnings.warn(
然后traceback,最后是:
AttributeError: module transformers.models.cpm has no attribute CpmTokenizer
我可以解决这个问题吗?
PS:我在github上看到火炬问题的解决方案是使用torchaudio.set_audio_backend("sox_io")
,但我应该如何使用它不清楚,如果有人知道问题的解决方案,让他们写一个详细的一步一步的过程。
我建议在导入任何变压器库之前安装TensorFlow -gpu包,因为它会在内部检查是否安装了TensorFlow。
pip install tensorflow-gpu
关于如何在Tensorflow上安装带有GPU的Tensorflow的更多信息