for a torch tensor in python I can use
y = x[i].sigmoid()
how do I replicate this using MLMultiArray in Swift ?
I can get the array by VNCoreMLFeatureValueObservation.featureValue.multiArrayValue
now I want to apply sigmoid on this
the sigmoid function I'm using is:
func sigmoid(z: Double) -> Double {
return 1.0 / (1.0 + exp(-z))
}
Typed this from memory, so there may be mistakes, but basically you grab a pointer to the memory and then loop through it:
However, it's much simpler to add the sigmoid operation to the Core ML model itself and let Core ML worry about it. You can do this by adding the sigmoid operation to the original model before you convert it, or afterwards (see my book Core ML Survival Guide for instructions on how to do this).