You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't want to use the weight of the pre-training to train the model, where can I change;
I modified :
# restorer, restore_ckpt = faster_rcnn.get_restorer()
# if not restorer is None:
# restorer.restore(sess, restore_ckpt)
# print('restore model')
added:
summary_writer = tf.summary.FileWriter(summary_path, graph=sess.graph)
saver = tf.train.Saver(max_to_keep=10)
But the result is not correct, no target can be predicted, and then the loss is also down.I look forward to your reply. Thank you. @yangxue0827 .
The text was updated successfully, but these errors were encountered:
Also I train from scratch, but the loss is nan for VOC dataset. Here is an example , I wonder whether the loss will be normal after training a long time. I chck the anchor sizes and stride. It seems fine for the voc dataset.
I don't want to use the weight of the pre-training to train the model, where can I change;
I modified :
# restorer, restore_ckpt = faster_rcnn.get_restorer()
# if not restorer is None:
# restorer.restore(sess, restore_ckpt)
# print('restore model')
added:
summary_writer = tf.summary.FileWriter(summary_path, graph=sess.graph)
saver = tf.train.Saver(max_to_keep=10)
But the result is not correct, no target can be predicted, and then the loss is also down.I look forward to your reply. Thank you. @yangxue0827 .
The text was updated successfully, but these errors were encountered: