DnnInvokeShrinkCaffeModel Method |
http://www.emgu.com
Convert all weights of Caffe network to half precision floating point
Namespace:
Emgu.CV.Dnn
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void ShrinkCaffeModel(
string src,
string dst
)
Public Shared Sub ShrinkCaffeModel (
src As String,
dst As String
)
public:
static void ShrinkCaffeModel(
String^ src,
String^ dst
)
static member ShrinkCaffeModel :
src : string *
dst : string -> unit
Parameters
- src
- Type: SystemString
Path to origin model from Caffe framework contains single precision floating point weights (usually has .caffemodel extension). - dst
- Type: SystemString
Path to destination model with updated weights.
See Also