- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试修改 cifar10.py 的代码,以便能够将图像传输到网络。
我实际上能够运行代码并开始训练过程,但一段时间后,如果我运行张量板,在“图像”部分下我总是有相同的图像。此外,交叉熵变为零。我认为我加载的图像是错误的。
这是代码
def distorted_inputs():
#Reading the dirs file where all the directories of the images are stored
filedirs = [line.rstrip('\n') for line in open('image_dirs.txt')]
#create a list of files
filenames = []
i = 0
for f in filedirs:
png_files_path = glob.glob(os.path.join(f, '*.[pP][nN][gG]'))
print('found ' + str(len(png_files_path)) + ' files in ' + f)
for filename in png_files_path:
#storing file_name label
s = filename + " " + str(i)
filenames.append(s)
i = i+1
# Create a queue that produces the filenames to read and the labels
filename_queue = tf.train.string_input_producer(filenames)
my_img, label = read_my_file_format(filename_queue.dequeue())
label = tf.string_to_number(label, tf.int32)
init_op = tf.initialize_all_variables()
with tf.Session() as sess:
sess.run(init_op)
# Start populating the filename queue.
coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(coord=coord)
image = my_img.eval()
coord.request_stop()
coord.join(threads)
reshaped_image = tf.cast(image, tf.float32)
resized_image = tf.image.resize_image_with_crop_or_pad(reshaped_image,IMAGE_SIZE, IMAGE_SIZE)
distorted_image = tf.image.random_crop(reshaped_image, [24, 24])
# Randomly flip the image horizontally.
distorted_image = tf.image.random_flip_left_right(distorted_image)
# Because these operations are not commutative, consider randomizing
# randomize the order their operation.
distorted_image = tf.image.random_brightness(distorted_image,max_delta=63)
distorted_image = tf.image.random_contrast(distorted_image,lower=0.2, upper=1.8)
# Subtract off the mean and divide by the variance of the pixels.
float_image = tf.image.per_image_whitening(distorted_image)
# Ensure that the random shuffling has good mixing properties.
min_fraction_of_examples_in_queue = 0.4
min_queue_examples = int(NUM_EXAMPLES_PER_EPOCH_FOR_TRAIN *min_fraction_of_examples_in_queue)
print ('Filling queue with ITSD images before starting to train. ''This will take a few minutes.')
# Generate a batch of images and labels by building up a queue of examples.
return _generate_image_and_label_batch(float_image, label, min_queue_examples)
图像读取部分来自https://github.com/HamedMP/ImageFlow自定义阅读器来自Tensorflow read images with labels相关函数实现如下
def read_my_file_format(filename_and_label_tensor):
"""Consumes a single filename and label as a ' '-delimited string.
Args:
filename_and_label_tensor: A scalar string tensor.
Returns:
Two tensors: the decoded image, and the string label.
"""
filename, label = tf.decode_csv(filename_and_label_tensor, [[""], [""]], " ")
file_contents = tf.read_file(filename)
example = tf.image.decode_png(file_contents)
return example, label
谢谢
最佳答案
您可以使用我创建的这段代码来解决我的分类问题:
resized_image = cv2.resize(image, (WIDTH, HEIGHT))
label = np.uint8(nclass)
arr = np.uint8([0 for x in range(image_bytes)])
# fill the label:
arr[0] = label
arr_cnt = 1
# fill the image (row-major order). first R values, then G values then B values
for y in range(0, HEIGHT):
for x in range(0, WIDTH):
arr[arr_cnt] = np.uint8(resized_image[x, y, 2]) # R
arr[arr_cnt + 1024] = np.uint8(resized_image[x, y, 1]) # G
arr[arr_cnt + 2048] = np.uint8(resized_image[x, y, 0]) # B
arr_cnt += 1
print "train arr:", arr[0], arr[3072]
train_arr = np.append(train_arr, arr)
#print train_arr[file_in_dir*3073]
else:
invalids_cnt += 1
#print "image", files_in_dir[file_in_dir], "is invalid"
# Write array to train.bin file:
with open('data_batch_%d.bin' % nclass, 'wb') as f:
f.write(train_arr)
f.close()
这里,调整大小的图像是一个输入图像“image”的调整大小版本。接下来,我创建一个 3073 字节的数组:第一个字节 = 标签,接下来的 1024 个字节 = 图像的红色值,接下来的 1024 个字节 = 图像的绿色值,接下来的 1024 个字节 = 图像的蓝色值。
我对每个输入图像执行此操作,然后将其连接成一个大的二进制数组,该数组写入二进制文件“data_batch_%d”
我已经在此要点中发布了我的完整脚本(对于一般用途可能更难理解):gist
关于machine-learning - 用于读取图像的tensorflow cifar10代码修改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34653643/
我在为 MacOSX 构建的独立包中添加 DMG 背景的自定义图标时遇到问题。我在项目的根目录中添加了一个包。正在从中加载自定义图标,但没有加载 DMG 背景图标。我正在使用 Java fx 2.2.
Qt for Symbian 和 Qt for MeeGo 有什么区别?我知道 Qt 是一个交叉编译平台。这是否意味着如果我使用来自 Qt 的库,完全相同的库可以在所有支持 Qt 的设备(例如 Sym
我正在尝试使用 C# .NET 3.5/4.0 务实地运行 SQL Server 数据库的备份。我已经找到了如何完成此操作,但是我似乎找不到用于备份的命名空间库。 我正在寻找 Microsoft.Sq
我最近在疯狂学习 Java,但我通常是一名 .NET 开发人员。 (所以请原谅我的新手问题。) 在 .Net 中,我可以在不使用 IIS 的情况下开发 ASP.Net 页面,因为它有一个简化的 Web
这post仅当打印命令中有字符串时才有用。现在我有大量的源代码,其中包含一条声明,例如 print milk,butter 应该格式化为 print(milk,butter) 用\n 捕获行尾并不成功
所以我的问题是: https://gist.github.com/panSarin/4a221a0923927115584a 当我保存这个表格时,我收到了标题中的错误 NoMethodError (u
如何让 Html5 音频在点击时播放声音? (ogg 用于 Firefox 等浏览器,mp3 用于 chrome 等浏览器) 到目前为止,我可以通过 onclick 更改为单个文件类型,但我无法像在普
如果it1和it2有什么区别? std::set s; auto it1 = std::inserter(s, s.begin()); auto it2 = std::inserter(s, s.en
4.0.0 com.amkit myapp SpringMVCFirst
我目前使用 Eclipse 作为其他语言的 IDE,而且我习惯于不必离开 IDE 做任何事情 - 但是我真的很难为纯 ECMAScript-262 找到相同或类似的设置。 澄清一下,我不是在寻找 DO
我想将带有字符串数组的C# 结构发送到C++ 函数,该函数接受void * 作为c# 结构和char** 作为c# 结构字符串数组成员。 我能够将结构发送到 c++ 函数,但问题是,无法从 c++ 函
我正在使用动态创建的链接: 我想为f:param附加自定义转换器,以从#{name}等中删除空格。 但是f:param中没有转换器
是否可以利用Redis为.NET创建后写或直写式缓存?理想情况下,透明的高速缓存是由单个进程写入的,并且支持从数据库加载丢失的数据,并每隔一段时间持久保存脏块? 我已经搜查了好几个小时,也许是goog
我正在通过bash执行命令的ssh脚本。 FILENAMES=( "export_production_20200604.tgz" "export_production_log_2020060
我需要一个正则表达式来出现 0 到 7 个字母或 0 到 7 个数字。 例如:匹配:1234、asdbs 不匹配:123456789、absbsafsfsf、asf12 我尝试了([a-zA-Z]{0
我有一个用于会计期间的表格,该表格具有期间结束和开始的开始日期和结束日期。我使用此表来确定何时发生服务交易以及何时在查询中收集收入,例如... SELECT p.PeriodID, p.FiscalY
我很难为只接受字符或数字的 Laravel 构建正则表达式验证。它是这样的: 你好<-好的 123 <- 好的 你好123 <-不行 我现在的正则表达式是这样的:[A-Za-z]|[0-9]。 reg
您实际上会在 Repeater 上使用 OnItemDataBound 做什么? 最佳答案 “此事件为您提供在客户端显示数据项之前访问数据项的最后机会。引发此事件后,数据项将被清空,不再可用。” ~
我有一个 fragment 工作正常的项目,我正在使用 jeremyfeinstein 的 actionbarsherlock 和滑动菜单, 一切正常,但是当我想自定义左侧抽屉列表单元格时,出现异常
最近几天,我似乎平均分配时间在构建我的第一个应用程序和在这里发布问题!! 这是我的第一个应用程序,也是我们的设计师完成的第一个应用程序。我试图满足他所做的事情的外观和感觉,但我认为他没有做适当的事情。
我是一名优秀的程序员,十分优秀!