简体   繁体   English

我应该使用哪个检查点 select 继续进行 Object 检测训练

[英]Which checkpoint should I select for continue for Object detection training

I start to training until ckpt-7 then I stopped training.我开始训练直到 ckpt-7 然后我停止训练。 Then again I started training but befor I changed pipline config in fine tune chekpoint on my model.然后我再次开始训练,但是在我更改了我的 model 上的微调检查点的管道配置之前。 I wrote latest check point and I changed its directory.我写了最新的检查点,我改变了它的目录。 My loss function approximetly 0.899 before stopped to the training.在停止训练之前,我的损失 function 大约为 0.899。 When I continue to train but its start to steps 100 and my loss fuction 15.009.当我继续训练但它开始到步骤 100 和我的损失函数 15.009。

How can I contiune the model before stopped?在停止之前如何继续 model? What should I do?我应该怎么办?

I am using centernet model with Colab.我在 Colab 中使用 centernet model。 Please explain I am new on that topic.请解释我是该主题的新手。

I could understand your question that you could not resume the training where it stopped.我可以理解您的问题,即您无法在停止的地方恢复培训。

Actually with the updates in TF2, we need not change the finetune checkpoint parameter in the pipeline.config.实际上,随着 TF2 中的更新,我们无需更改 pipeline.config 中的微调检查点参数。 Re-run the same training script pointing to the same model_dir where your checkpoints are stored.重新运行指向存储检查点的同一 model_dir 的相同训练脚本。

TF2 will automatically understand and resume from where the training stopped with the help of checkpoints created in the model_dir.在 model_dir 中创建的检查点的帮助下,TF2 将自动理解并从训练停止的位置恢复。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 训练张量流对象检测关于检查点错误的错误 - Error while training tensorflow object detection about checkpoint error 无法在对象检测培训中加载finetune_checkpoint - Unable to load finetune_checkpoint in object detection training 我如何从检查点 keras 模型继续训练? - How I can continue training from checkpoint keras model? 我如何在每个时期保存检查点并加载随机保存的检查点以继续训练 - How I can save checkpoint every epoch and load an random saved checkpoint to continue training GPT-2 从检查点继续训练 - GPT-2 Continue training from checkpoint 继续在 SavedModel 上训练或从 SavedModel 加载检查点 - Continue training on SavedModel or load checkpoint from SavedModel tensorflow:从检查点恢复以继续训练 - tensorflow : restore from checkpoint for continue training TensorFlow 对象检测 API:使用“fine_tune_checkpoint”进行训练 - 解冻较早的层? - TensorFlow Object Detection API: training with `fine_tune_checkpoint` - unfreeze the earlier layers? 如何使用 Tensorflow 对象检测 API 继续训练对象检测模型? - How to continue training an object detection model using Tensorflow Object Detection API? 对于具有 62 个类别的对象检测模型,我应该采用多少训练样本? - How many training samples should I take for an object detection model with 62 classes?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM