- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
虽然 tensorflow 非常建议不要使用将被 tf.data 对象替换的已弃用函数,但似乎没有好的文档可以干净地替换现代方法的弃用函数。此外,Tensorflow 教程仍然使用已弃用的功能来处理文件(阅读数据教程:https://www.tensorflow.org/api_guides/python/reading_data)。
另一方面,尽管有使用“现代”方法的良好文档(导入数据教程:https://www.tensorflow.org/guide/datasets),但仍然存在旧教程,这可能会导致许多人(如我)使用已弃用的教程第一的。这就是为什么人们想要将已弃用的方法干净利落地翻译成“现代”方法的原因,这种翻译的示例可能非常有用。
#!/usr/bin/env python3
import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt
import shutil
import os
if not os.path.exists('example'):
shutil.rmTree('example');
os.mkdir('example');
batch_sz = 10; epochs = 2; buffer_size = 30; samples = 0;
for i in range(50):
_x = np.random.randint(0, 256, (10, 10, 3), np.uint8);
plt.imsave("example/image_{}.jpg".format(i), _x)
images = tf.train.match_filenames_once('example/*.jpg')
fname_q = tf.train.string_input_producer(images,epochs, True);
reader = tf.WholeFileReader()
_, value = reader.read(fname_q)
img = tf.image.decode_image(value)
img_batch = tf.train.batch([img], batch_sz, shapes=([10, 10, 3]));
with tf.Session() as sess:
sess.run([tf.global_variables_initializer(),
tf.local_variables_initializer()])
coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(coord=coord)
for _ in range(epochs):
try:
while not coord.should_stop():
sess.run(img_batch)
samples += batch_sz;
print(samples, "samples have been seen")
except tf.errors.OutOfRangeError:
print('Done training -- epoch limit reached')
finally:
coord.request_stop();
coord.join(threads)
这段代码对我来说运行得很好,打印到控制台:
10 samples have been seen
20 samples have been seen
30 samples have been seen
40 samples have been seen
50 samples have been seen
60 samples have been seen
70 samples have been seen
80 samples have been seen
90 samples have been seen
100 samples have been seen
110 samples have been seen
120 samples have been seen
130 samples have been seen
140 samples have been seen
150 samples have been seen
160 samples have been seen
170 samples have been seen
180 samples have been seen
190 samples have been seen
200 samples have been seen
Done training -- epoch limit reached
可以看出,它使用了已弃用的函数和对象,如 tf.train.string_input_producer() 和 tf.WholeFileReader()。需要使用“现代”tf.data.Dataset 的等效实现。
编辑:
已找到导入 CSV 数据的示例:Replacing Queue-based input pipelines with tf.data .我想在这里尽可能完整,并假设更多的例子更好,所以我不觉得这是一个重复的问题。
最佳答案
这是翻译,它的打印与标准输出完全相同。
#!/usr/bin/env python3
import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt
import os
import shutil
if not os.path.exists('example'):
shutil.rmTree('example');
os.mkdir('example');
batch_sz = 10; epochs = 2; buffer_sz = 30; samples = 0;
for i in range(50):
_x = np.random.randint(0, 256, (10, 10, 3), np.uint8);
plt.imsave("example/image_{}.jpg".format(i), _x);
fname_data = tf.data.Dataset.list_files('example/*.jpg')\
.shuffle(buffer_sz).repeat(epochs);
img_batch = fname_data.map(lambda fname: \
tf.image.decode_image(tf.read_file(fname),3))\
.batch(batch_sz).make_initializable_iterator();
with tf.Session() as sess:
sess.run([img_batch.initializer,
tf.global_variables_initializer(),
tf.local_variables_initializer()]);
next_element = img_batch.get_next();
try:
while True:
sess.run(next_element);
samples += batch_sz
print(samples, "samples have been seen");
except tf.errors.OutOfRangeError:
pass;
print('Done training -- epoch limit reached');
主要问题是:
tf.data.Dataset.list_files()
将文件名作为数据集加载,而不是使用已弃用的 tf.tran.string_input_producer()
生成队列消耗文件名。tf.WholeFileReader
,使用已弃用的 tf.train.batch()
进行批处理> 功能。tf.train.string_input_producer()
创建的tf.train.QueueRunners
)不再使用,但它应该在数据集迭代器结束时进行检查。我希望这对很多人有用,就像实现它后对我一样。
引用:
奖励:数据集 + 估计器
#!/usr/bin/env python3
import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt
import os
import shutil
if not os.path.exists('example'):
shutil.rmTree('example');
os.mkdir('example');
batch_sz = 10; epochs = 2; buffer_sz = 10000; samples = 0;
for i in range(50):
_x = np.random.randint(0, 256, (10, 10, 3), np.uint8);
plt.imsave("example/image_{}.jpg".format(i), _x);
def model(features,labels,mode,params):
return tf.estimator.EstimatorSpec(
tf.estimator.ModeKeys.PREDICT,{'images': features});
estimator = tf.estimator.Estimator(model,'model_dir',params={});
def input_dataset():
return tf.data.Dataset.list_files('example/*.jpg')\
.shuffle(buffer_sz).repeat(epochs).map(lambda fname: \
tf.image.decode_image(tf.read_file(fname),3))\
.batch(batch_sz);
predictions = estimator.predict(input_dataset,
yield_single_examples=False);
for p_dict in predictions:
samples += batch_sz;
print(samples, "samples have been seen");
print('Done training -- epoch limit reached');
主要问题是:
估计器
定义模型
函数,在本例中它什么都不做,因为我们只是传递它们。input_dataset
函数的定义,用于检索估计器要使用的数据集(在本例中用于预测)。tf.estimator.Estimator.predict()
而不是直接使用 tf.Session()
,加上 yield_single_example=False
在字典的预测列表中检索一批元素而不是单个元素。在我看来,它更像是模块化和可重用的代码。
引用:
关于python-3.x - 如何将已弃用的 tf.train.QueueRunners tensorflow 方法转换为将数据导入新的 tf.data.Dataset 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54509752/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!