eric612 / Yolo-Model-Zoo

34 stars 11 forks source link

Pretrained weights #4

Open ramanathan831 opened 6 years ago

ramanathan831 commented 6 years ago

How to use your trained .caffemodel as a pretrained weights (transfer learning) in the model which we train. Is it possible in caffe ?

eric612 commented 6 years ago

For example , in my training script , just replace mobilenet_iter_73000.caffemodel to your specify caffmodel

./tools/caffe train --solver models/yolov3/mobilenet_yolov3_lite_solver.prototxt --weights models/MobileNet/mobilenet_iter_73000.caffemodel --gpu=0 2>&1 | tee $LOG
ramanathan831 commented 6 years ago

Thanks, one more thing: how did you calculate the "MAC" value of the model?