2

我正在尝试使用我在训练数据上训练过的模型来运行 allennlp 包的预测。但是,在进程开始时,出现此异常并停止程序。

raise source.error('bad escape %s' % escape, len(escape)) sre_constants.error: bad escape \p at 257

此外,当我打开一个 allennlp 环境时,我收到另一个错误:

2019-04-01 12:20:43,879 - 信息 - allennlp.common.params - dataset_reader.lazy = 错误分段错误(核心转储)

我正在使用以下命令执行序列到序列的任务,其中训练数据是一堆 0 和 1(src 和目标):

CUDA_VISBILE_DEVICES=1 python -m allennlp.run train  
                       allennlp_config/simple_tagger.json 
                       --serialization-dir models/last

在预测中:

python -m allennlp.run predict models/new1/model.tar.gz 
                               data/test.src.txt 
                               --output bu-out.txt 
                               --cuda-device 0 
                               --batch-size 5

具体来说,我尝试在这个 repo 中重新生成结果:https ://github.com/sebastianGehrmann/bottom-up-summary

4

0 回答 0