Merge pull request #1 from dlawrences/dev/coreml_convert_pxscaling

Updated coreml conversion to do pixel scaling between 0.0 and 1.0
pull/1/head
Laurentiu Diaconu 5 years ago committed by GitHub
commit 7c4d3cf51b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -61,7 +61,8 @@ if __name__ == '__main__':
import coremltools as ct
print('\nStarting CoreML export with coremltools %s...' % ct.__version__)
model = ct.convert(ts, inputs=[ct.ImageType(name='images', shape=img.shape)]) # convert
# convert model from torchscript and apply pixel scaling as per detect.py
model = ct.convert(ts, inputs=[ct.ImageType(name='images', shape=img.shape, scale=1/255.0, bias=[0, 0, 0])])
f = opt.weights.replace('.pt', '.mlmodel') # filename
model.save(f)
print('CoreML export success, saved as %s' % f)

Loading…
Cancel
Save