- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用苗条的tensorflow库微调inceptionv3模型。
在编写代码时,我无法理解某些事情。我尝试阅读源代码(没有适当的文档),并弄清了几件事,并且能够对其进行微调并保存检查点。这是我遵循的步骤
1.我为训练数据创建了一个tf.record,这很好,现在我正在使用以下代码读取数据。
import tensorflow as tf
import tensorflow.contrib.slim.nets as nets
import tensorflow.contrib.slim as slim
import matplotlib.pyplot as plt
import numpy as np
# get the data and labels here
data_path = '/home/sfarkya/nvidia_challenge/datasets/detrac/train1.tfrecords'
# Training setting
num_epochs = 100
initial_learning_rate = 0.0002
learning_rate_decay_factor = 0.7
num_epochs_before_decay = 5
num_classes = 5980
# load the checkpoint
model_path = '/home/sfarkya/nvidia_challenge/datasets/detrac/inception_v3.ckpt'
# log directory
log_dir = '/home/sfarkya/nvidia_challenge/datasets/detrac/fine_tuned_model'
with tf.Session() as sess:
feature = {'train/image': tf.FixedLenFeature([], tf.string),
'train/label': tf.FixedLenFeature([], tf.int64)}
# Create a list of filenames and pass it to a queue
filename_queue = tf.train.string_input_producer([data_path], num_epochs=1)
# Define a reader and read the next record
reader = tf.TFRecordReader()
_, serialized_example = reader.read(filename_queue)
# Decode the record read by the reader
features = tf.parse_single_example(serialized_example, features=feature)
# Convert the image data from string back to the numbers
image = tf.decode_raw(features['train/image'], tf.float32)
# Cast label data into int32
label = tf.cast(features['train/label'], tf.int32)
# Reshape image data into the original shape
image = tf.reshape(image, [128, 128, 3])
# Creates batches by randomly shuffling tensors
images, labels = tf.train.shuffle_batch([image, label], batch_size=64, capacity=128, num_threads=2,
min_after_dequeue=64)
init_op = tf.group(tf.global_variables_initializer(), tf.local_variables_initializer())
sess.run(init_op)
# Create a coordinator and run all QueueRunner objects
coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(coord=coord)
# load model
# load the inception model from the slim library - we are using inception v3
#inputL = tf.placeholder(tf.float32, (64, 128, 128, 3))
img, lbl = sess.run([images, labels])
one_hot_labels = slim.one_hot_encoding(lbl, num_classes)
with slim.arg_scope(slim.nets.inception.inception_v3_arg_scope()):
logits, inceptionv3 = nets.inception.inception_v3(inputs=img, num_classes=5980, is_training=True,
dropout_keep_prob=.6)
# Restore convolutional layers:
variables_to_restore = slim.get_variables_to_restore(exclude=['InceptionV3/Logits', 'InceptionV3/AuxLogits'])
init_fn = slim.assign_from_checkpoint_fn(model_path, variables_to_restore)
# loss function
loss = tf.losses.softmax_cross_entropy(onehot_labels=one_hot_labels, logits = logits)
total_loss = tf.losses.get_total_loss()
# train operation
train_op = slim.learning.create_train_op(total_loss + loss, optimizer= tf.train.AdamOptimizer(learning_rate=1e-4))
print('Im here')
# Start training.
slim.learning.train(train_op, log_dir, init_fn=init_fn, save_interval_secs=20, number_of_steps= 10)
最佳答案
这是您问题的答案。
您不能将纪元直接赋予slim.learning.train
。相反,您将批次数作为参数。它称为number_of_steps
。它用于在line 709上设置名为should_stop_op
的操作。我假设您知道如何将纪元数转换为批次。
我不认为shuffle_batch
函数会重复图像,因为它内部使用了RandomShuffleQueue。根据this answer,RandomShuffleQueue
使用后台线程将元素排入队列:
而size(queue) < capacity
时:
向队列添加元素
它使元素出队:
而number of elements dequeued < batch_size
:
等待直到size(queue) >= min_after_dequeue + 1
元素。
从队列中均匀地随机选择一个元素,将其从队列中删除,然后将其添加为输出批次。
因此,我认为重复元素的可能性很小,因为在dequeuing
操作中,所选元素将从队列中删除。因此,它是采样而无需更换。
是否会为每个时期创建一个新的队列?
输入到tf.train.shuffle_batch
的张量是image
和label
,它们最终来自filename_queue
。如果该队列无限期地产生TFRecord文件名,那么我认为shuffle_batch
不会创建新队列。您也可以创建玩具代码,例如this,以了解shuffle_batch
的工作方式。
接下来,如何训练整个数据集?在您的代码中,以下行获取TFRecord文件名的列表。
filename_queue = tf.train.string_input_producer([data_path], num_epochs=1)
filename_queue
涵盖了您拥有的所有TFRecords,那么您肯定在训练整个数据集。现在,如何重新整理整个数据集是另一个问题。正如@mrry提到的
here一样,尚无支持(尚未使用AFAIK)对内存不足的数据集进行混洗。因此,最好的方法是准备数据集中的许多分片,以使每个分片包含约1024个示例。将TFRecord文件名列表按以下顺序随机排列:
filename_queue = tf.train.string_input_producer([data_path], shuffle=True, capacity=1000)
num_epochs = 1
参数并设置了
shuffle=True
。这样,它将无限期地产生TFRecord文件名的改组列表。现在,在每个文件上,如果使用
tf.train.shuffle_batch
,则将获得接近均匀的混排。基本上,随着每个分片中的示例数趋于1,您的混洗将变得越来越统一。我不想设置
num_epochs
,而是使用前面提到的
number_of_steps
参数终止训练。
training.py
并引入
logging.info('total loss = %f', total_loss)
。我不知道有没有更简单的方法。无需更改代码的另一种方法是在Tensorboard中查看摘要。
summary
对象。
summary
。
summary
操作。
slim.learning.train
,则步骤5和6已自动为您完成。
train_image_classifier.py
。 472行显示了如何创建
summaries
对象。第490、512和536行将相关变量写入
summaries
。第549行合并所有摘要,第553行创建op。您可以将此操作传递给
slim.learning.train
,还可以指定要编写摘要的频率。我认为,除非要进行特定的调试,否则不要在摘要中写任何内容,包括损失,total_loss,准确性和学习率。如果您编写直方图,那么对于ResNet-50之类的网络,张量板文件可能需要数十小时才能加载(我的张量板文件曾经是28 GB,要花12个小时才能加载6天的进度!)。顺便说一句,您实际上可以使用
train_image_classifier.py
文件进行微调,您将跳过上面的大多数步骤。但是,我喜欢这样做,因为您可以学到很多东西。
total_loss + loss
,您可以执行以下操作:
loss = tf.losses.softmax_cross_entropy(onehot_labels=one_hot_labels, logits = logits)
tf.losses.add_loss(loss)
total_loss = tf.losses.get_total_loss()
train_op = slim.learning.create_train_op(total_loss, optimizer=tf.train.AdamOptimizer(learning_rate=1e-4))
关于python - 在 slim 的tensorflow和tf记录批处理中微调inceptionv3的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49564318/
.net 4.0 添加了几个与线程相关的新类:ManualResetEventSlim , SemaphoreSlim和 ReaderWriterLockSlim . Slim 版本和旧类之间有什么区
一个新的 Slim 问题 我期待以下 Slim 模板 div class="header" h2 slim head p a test example of span Slim span a
我们正在考虑使用 Slim 3 作为我们 API 的框架。我已经搜索过 SO 和 Slim 文档,但找不到问题的答案。如果我们有不同的路由文件(例如 v1、v2 等)并且如果两个路由具有相同的签名,则
我正在尝试在 Slim-lang 的列表项中嵌套第二个 ul,如下所示: div.row ul.dropdown li Dropdown Option 1
我有以下代码导致 Slim::Parser::SyntaxError : p code.inline /charge 我希望这会输出 /charge但这只会让斯林姆不高兴。 为什么? 最佳答案 使
我想在子目录中使用 Slim 3,但似乎无法加载它。所有文件都包含在子目录中,包括 composer.json。这是我的 composer.json: "require": { "slim/s
我的 Slim 项目组织如下: - app -- Acme --- Auth ---- Auth.php (handles authentication) -- config --- developm
我在我的 svelte-typescript 项目上使用 clickOutside 指令,当我将自定义事件分配给相关元素时出现此错误 Type '{ class: string; onclick_ou
我们缩小了在 Silex 和 Slim PHP 框架之间的搜索范围,以便在我们的 Apache/PHP/MySQL 服务器上路由我们的 REST API。 两者似乎都有很好的评价。 Silex 可能有
我有一个 get表格中的路线 $app->get('/redirect[/{subject}]', function ($request, $response, $args) { }); 如果我向 /
任何人都可以解释在选择使用钩子(Hook)而不是使用中间件来实现身份验证或缓存等功能时是否有任何显着的优点或缺点? 例如 - 我可以通过自定义中间件获取请求对象并设置应用程序语言变量来实现翻译功能,该
在 Slim 3 中是否有类似 Laravel 的 back() helper 来获取之前的路由名称或 uri? 它不必特定于 Slim,我只是想重定向回上一页。 谢谢:) 最佳答案 假设你想要 re
在 Slim 3 中是否有类似 Laravel 的 back() helper 来获取之前的路由名称或 uri? 它不必特定于 Slim,我只是想重定向回上一页。 谢谢:) 最佳答案 假设你想要 re
我正在学习这里的教程: https://www.simplifiedcoding.net/php-restful-api-framework-slim-tutorial-1/ 导师说下载slim在:
如何从不同的 php 页面中的另一个函数调用 slim 函数 这里是 My.php: $app->get('/list/:id',function($id) { //fill array her
很抱歉提出这样一个愚蠢的问题,但在文档中找不到它: filename.slim filename.html.slim 这似乎是一种非常适合使用的语言。我以前使用过 HAML,所以我认为这将是一个相当不
请原谅我的无知,但我只是使用 npm 安装了 jQuery,并且在 jQuery 文件之间有一个名为 jquery.slim.js 的文件,slim 是什么?我知道 min 代表缩小但 slim 对我
TailwindCSS 看起来像是一个很棒的前端工具,但我想知道如何将它与 Rails Slim 模板语言一起使用? 例如: 如果我通过 HTML2SLIM 运行它,我会得到这个建议: .bg-re
TailwindCSS 看起来像是一个很棒的前端工具,但我想知道如何将它与 Rails Slim 模板语言一起使用? 例如: 如果我通过 HTML2SLIM 运行它,我会得到这个建议: .bg-re
我想将纤薄的 textmate 包安装到 sublime2。 我去了这个链接 slim textmate bundle 我将它克隆到 pristinepackage(根据 nettuts 网站),但什
我是一名优秀的程序员,十分优秀!