0

我对 tensorflow 和 tf_sentencepiece 有疑问。首先我列出了我已经安装的软件包,我无法安装最新的 tensorflow,因为我的 CPU 不支持 AVX,只有 1.5 版适用于我。我也在使用 python 3.6 在 vi​​rtualenv 中工作,我的主要操作系统是 manjaro (arch linux)。

tensorflow             1.5.0
tensorflow-hub         0.2.0
tensorflow-tensorboard 1.5.1
tf-sentencepiece       0.1.83

这是我需要运行的代码:

import tensorflow as tf
import tensorflow_hub as hub
import numpy as np
import tf_sentencepiece

我遇到的第一个问题是以下问题:

tensorflow.python.framework.errors_impl.NotFoundError: 
/home/simoneg/Scrivania/test/lib/python3.6/site-packages/tf_sentencepiece/_sentencepiece_processor_ops.so.3.6/site-packages/tf_sentencepiece/_sentencepiece_processor_ops.so.2.0.0-beta1:
cannot open shared object file: No such file or directory

这里的问题是我有那个文件(_sentencepiece_processor_ops.so.2.0.0-beta1)但不在它正在寻找的文件夹中,所以我试图通过修改 /home/simoneg/Scrivania/test/lib/python3 来解决它.6/site-packages/tf_sentencepiece/ sentencepiece_processor_ops.py。主要问题是这一行,_gen_sentencepiece_processor_op = tf.load_op_library(so_file),so_file指向了错误的路径,我修正了路径(正确的路径是/home/simoneg/Scrivania/test/lib/python3.6/site-packages /tf_sentencepiece/) 现在发生了一个新错误:

tensorflow.python.framework.errors_impl.NotFoundError:
/home/simoneg/Scrivania/test/lib/python3.6/site-packages/tf_sentencepiece/libtensorflow_framework.so.2:
undefined symbol: _ZTIN10tensorflow8OpKernelE

我在网上搜索了很多,但没有一个解决方案适用于 tensorflow 1.5,我认为问题在于 tf-sentencepiece 的版本,但我找不到一个有效的解决方案。您有任何建议或解决方案可以解决问题吗?(我也试过 tf-sentencepiece 版本,0.1.9 和 0.1.6)

4

0 回答 0