I am using Xamarin IOS, I need to change the 'multipler' value of this CoreML MLModel as instructed here
'A model with a 0.50 multiplier is recommended for mobile.' https://github.com/tensorflow/tfjs-models/tree/master/posenet
the model I'm currently using has a 0.75 multipler (too slow), I have been trying to convert and amend this property on the model however, the property doesn't exist in Xamarin IOS, the model simply has a GetPrediction method that's it!
For Javascript it seems you are able to set the properties as you wish, like below however all I need is Posenet as an .MLModel file with a multipler of 0.5.
//This code below isn't possible using Xamarin IOS, the only property the model has is a bool 'RunOnGPUAndCpu' and a method 'GetPrediction'
const net = await posenet.load({
architecture: 'MobileNetV1',
outputStride: 16,
inputResolution: { width: 640, height: 480 },
multiplier: 0.75
});
Ive attempted to convert a Tensorflow model with no luck!