Caffe: How to modify and save the caffemodel in python?

Created on 2 Dec 2014  ·  2Comments  ·  Source: BVLC/caffe

I need to resume the training with some parameter changed, so I must modify the caffemodel and write it to a .caffemodel file, and i want to implement it in python. But it seems that the python didn't provide any method to write to a .caffemodel.

question

Most helpful comment

You can use help(caffe.Net) in python to see all the docs about Net.

All 2 comments

The editing model parameters example shows you how with the Net.save() method.

Ask usage questions on the caffe-users mailing list. Thanks!

You can use help(caffe.Net) in python to see all the docs about Net.

Was this page helpful?
0 / 5 - 0 ratings