【问题标题】:Failed to load tensorflow BERT pre-trained model未能加载 tensorflow BERT 预训练模型
【发布时间】:2019-08-05 03:38:31
【问题描述】:

我尝试加载一个 BERT 预训练模型来执行 NER 任务。但是系统找不到预训练好的模型文件。

我在终端中使用了以下代码,该文件夹包含model.ckpt-1000000、model.ckpt-1000000.index、model.ckpt-1000000.meta文件。

python run_ner.py \
    --do_train=true \
    --do_eval=true \
    --vocab_file=vocab.txt \
    --bert_config_file=bert_config.json \
    --init_checkpoint=model.ckpt-1000000 \
    --num_train_epochs=10.0 \
    --data_dir=NCBI-disease/ \
    --output_dir=epoch1

错误信息是

2019-08-04 23:26:41.272281: W tensorflow/core/framework/op_kernel.cc:1401] OP_REQUIRES failed at save_restore_v2_ops.cc:184 : Not found: model.ckpt-1000000.data-00000-of-00001; No such file or directory

  File "/Users/anaconda/envs/BIOBERT/lib/python3.6/site-packages/tensorflow/python/client/session.py", line 1328, in _do_run
    run_metadata)
  File "/Users/anaconda/envs/BIOBERT/lib/python3.6/site-packages/tensorflow/python/client/session.py", line 1348, in _do_call
    raise type(e)(node_def, op, message)
tensorflow.python.framework.errors_impl.NotFoundError: model.ckpt-1000000.data-00000-of-00001; No such file or directory
     [[node checkpoint_initializer_161 (defined at run_ner.py:422) ]]

注意:模型文件的原始名称为model.ckpt-1000000.data-00000-of-00001、model.ckpt-1000000.index和model.ckpt-1000000.meta。我也试过了

python run_ner.py \
    --do_train=true \
    --do_eval=true \
    --vocab_file=vocab.txt \
    --bert_config_file=bert_config.json \
    --init_checkpoint=model.ckpt-1000000.data-00000-of-00001 \
    --num_train_epochs=10.0 \
    --data_dir=NCBI-disease/ \
    --output_dir=epoch1

那么错误将是

  File "/Users/anaconda/envs/BIOBERT/lib/python3.6/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 326, in NewCheckpointReader
    return CheckpointReader(compat.as_bytes(filepattern), status)
  File "/Users/SichengZhou/anaconda/envs/BIOBERT/lib/python3.6/site-packages/tensorflow/python/framework/errors_impl.py", line 528, in __exit__
    c_api.TF_GetCode(self.status.status))
tensorflow.python.framework.errors_impl.DataLossError: Unable to open table file ./model.ckpt-1000000.data-00000-of-00001: Data loss: not an sstable (bad magic number): perhaps your file is in a different file format and you need to use a different restore operator?

【问题讨论】:

  • --init_checkpoint=model.ckpt-1000000.data-00000-of-00001 更改为--init_checkpoint=/<path_to_checkpoint>/model.ckpt-1000000 .....记下删除.data-00000-of-00001

标签: python tensorflow word-embedding pre-trained-model


【解决方案1】:

模型文件的原始名称应为model.ckpt-1000000.data-00000-of-00001、model.ckpt-1000000.index和model.ckpt-1000000.meta。

你得到的错误是因为你正在运行的 ckpt 文件和 python 文件(run_ner.py)在不同的路径中。

python run_ner.py \
--do_train=true \
--do_eval=true \
--vocab_file=vocab.txt \
--bert_config_file=bert_config.json \
--init_checkpoint=<path to folder where ckpt files are saved>/model.ckpt-1000000 \
--num_train_epochs=10.0 \
--data_dir=NCBI-disease/ \
--output_dir=epoch1

在运行run_ner.py 时不要将--init_checkpoint=model.ckpt-1000000 更改为--init_checkpoint=model.ckpt-1000000.data-00000-of-00001

希望这会有所帮助。

【讨论】:

    猜你喜欢
    • 2021-06-01
    • 2020-08-16
    • 1970-01-01
    • 2021-03-12
    • 1970-01-01
    • 1970-01-01
    • 2021-02-19
    • 2019-08-28
    • 2021-06-08
    相关资源
    最近更新 更多