在使用tf.load_op_library时出现问题, 不管是精确到绝对路径还是使用os.path.join均出现了tensorflow.python.framework.errors_impl.NotFoundError, 而文件确实在目标路径中 ,更换了两个版本tensorflow仍然没有改善.
import tensorflow as tf
from tensorflow.python.framework import ops
import sys
import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.append(BASE_DIR)
auctionmatch_module = tf.load_op_library(os.path.join(BASE_DIR, 'tf_auctionmatch_so.so'))