You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 18, 2019. It is now read-only.
Recently I converted your caffemodel to CoreMode(.mlmodel) but whenever I put in Xcode it's automatically detect mlmodel file and it's giving me Multiarray result.
The text was updated successfully, but these errors were encountered:
ravi-kotadiya
changed the title
caffemodel converted for iOS CoreML(.mlmodel) Model returning result in Multiarray
caffemodel converted to iOS CoreML(.mlmodel) Model it's returning result in Multiarray
Sep 2, 2017
@ravi-kotadiya@ycchen1 I think you can access the first element from that array and that is the result (double value).
Example:
letprediction=...// your model predictionletprob= prediction.prob // the MLMultiArray result, in your case may be other nameletprecision= prob![0].doubleValue // the result like 0.7512
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Recently I converted your caffemodel to CoreMode(.mlmodel) but whenever I put in Xcode it's automatically detect mlmodel file and it's giving me Multiarray result.
The text was updated successfully, but these errors were encountered: