在带有 caffe 的 CNN 中,我可以设置初始 caffemodel 吗?

In CNN with caffe, Can I set up initial caffemodel?

我用caffe操作过CNN。 然而,系统被强制终止。 到目前为止,我有 caffemodel。

我可以从现在开始使用当前的 caffemodel 重新开始学习吗?

谢谢,

Caffe 支持按说明恢复 here:

We all experience times when the power goes out [...] Since we are snapshotting intermediate results during training, we will be able to resume from snapshots.

这可以通过主 caffe 命令行工具的 --snapshot 选项获得,例如:

./build/tools/caffe train [...] --snapshot=caffenet_train_10000.solverstate

如文档中所述 caffenet_train_10000.solverstate 是:

the solver state snapshot that stores all necessary information to recover the exact solver state.

特别是您可以从 solver documentation.

中找到有关如何配置快照的更多精确信息