作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在使用 Tensorflow 数据集 API 对指定路径的图像执行一些扩充。文件名本身包含说明是否扩充文件的信息。所以我想做的是从数据集中读取文件,并为每个文件在文件名中执行查找,如果我找到特定的子字符串,则设置一个 bool 标志并将子字符串替换为“”。
我得到的错误是:
AttributeError: 'Tensor' object has no attribute 'find'
我无法使用 dtype 字符串条目对张量执行“查找”,因为查找不是张量的一部分,所以我想弄清楚如何执行上述操作。我在下面分享了一些代码,我认为这些代码演示了我正在尝试做的事情。性能很重要,所以如果有人看到我将通过数据集 API 错误地执行此操作,我宁愿以正确的方式执行此操作。
def preproc_img(filenames):
def parse_fn(filename):
augment_inst = False
if cfg.SPLIT_INTO_INST:
#*****************************************************
#*** THIS IS WHERE THE LOGIC IS CURRENTLY BREAKING ***
#*****************************************************
if filename.find('_data_augmentation') != -1:
augment_inst = True
filename = filename.replace('_data_augmentation', '')
image_string = tf.read_file(filename)
img = tf.image.decode_image(image_string, channels=3)
return dict(zip([filename], [img]))
dataset = tf.data.Dataset.from_tensor_slices(filenames)
dataset = dataset.map(parse_fn)
iterator = dataset.make_one_shot_iterator()
return iterator.get_next()
def perform_train():
if __name__ == '__main__':
filenames = helper.get_image_paths()
next_batch = preproc_img(filenames)
with tf.Session() as sess:
with sess .graph.as_default():
sess.run(tf.local_variables_initializer())
sess.run(tf.global_variables_initializer())
dat = sess.run(next_batch)
# I would now go about calling any of my tf op code below
最佳答案
您可以使用 tf.regex_replace
用于替换 tf.string
张量中的文本。
filename = tf.regex_replace(filename, "_data_augmentation", "")
对于 TF 2.0
filename = tf.strings.regex_replace(filename, "_data_augmentation", "")
关于tensorflow - 如何在 Tensorflow String Tensor 上执行字符串查找和替换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50139176/
我是一名优秀的程序员,十分优秀!