소스 검색

Merge pull request #1 from dlawrences/dev/coreml_convert_pxscaling

Updated coreml conversion to do pixel scaling between 0.0 and 1.0
5.0
Laurentiu Diaconu GitHub 4 년 전
부모
커밋
7c4d3cf51b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      models/export.py

+ 2
- 1
models/export.py 파일 보기

@@ -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…
취소
저장