2021-08-15 03:17:51 +08:00
|
|
|
# YOLOv5 🚀 by Ultralytics, GPL-3.0 license
|
|
|
|
"""
|
2021-11-17 22:18:50 +08:00
|
|
|
Export a YOLOv5 PyTorch model to other formats. TensorFlow exports authored by https://github.com/zldrobit
|
|
|
|
|
2022-01-04 12:08:15 +08:00
|
|
|
Format | `export.py --include` | Model
|
2022-01-03 08:09:45 +08:00
|
|
|
--- | --- | ---
|
2022-01-04 12:08:15 +08:00
|
|
|
PyTorch | - | yolov5s.pt
|
|
|
|
TorchScript | `torchscript` | yolov5s.torchscript
|
|
|
|
ONNX | `onnx` | yolov5s.onnx
|
|
|
|
OpenVINO | `openvino` | yolov5s_openvino_model/
|
|
|
|
TensorRT | `engine` | yolov5s.engine
|
|
|
|
CoreML | `coreml` | yolov5s.mlmodel
|
|
|
|
TensorFlow SavedModel | `saved_model` | yolov5s_saved_model/
|
|
|
|
TensorFlow GraphDef | `pb` | yolov5s.pb
|
|
|
|
TensorFlow Lite | `tflite` | yolov5s.tflite
|
|
|
|
TensorFlow Edge TPU | `edgetpu` | yolov5s_edgetpu.tflite
|
|
|
|
TensorFlow.js | `tfjs` | yolov5s_web_model/
|
2020-06-30 05:00:13 +08:00
|
|
|
|
2022-02-02 06:52:50 +08:00
|
|
|
Requirements:
|
|
|
|
$ pip install -r requirements.txt coremltools onnx onnx-simplifier onnxruntime openvino-dev tensorflow-cpu # CPU
|
|
|
|
$ pip install -r requirements.txt coremltools onnx onnx-simplifier onnxruntime-gpu openvino-dev tensorflow # GPU
|
|
|
|
|
2020-06-30 05:00:13 +08:00
|
|
|
Usage:
|
2022-08-22 07:06:29 +08:00
|
|
|
$ python export.py --weights yolov5s.pt --include torchscript onnx openvino engine coreml tflite ...
|
2021-09-12 21:52:24 +08:00
|
|
|
|
|
|
|
Inference:
|
2022-08-22 07:06:29 +08:00
|
|
|
$ python detect.py --weights yolov5s.pt # PyTorch
|
|
|
|
yolov5s.torchscript # TorchScript
|
|
|
|
yolov5s.onnx # ONNX Runtime or OpenCV DNN with --dnn
|
|
|
|
yolov5s.xml # OpenVINO
|
|
|
|
yolov5s.engine # TensorRT
|
|
|
|
yolov5s.mlmodel # CoreML (macOS-only)
|
|
|
|
yolov5s_saved_model # TensorFlow SavedModel
|
|
|
|
yolov5s.pb # TensorFlow GraphDef
|
|
|
|
yolov5s.tflite # TensorFlow Lite
|
|
|
|
yolov5s_edgetpu.tflite # TensorFlow Edge TPU
|
2021-09-12 21:52:24 +08:00
|
|
|
|
|
|
|
TensorFlow.js:
|
|
|
|
$ cd .. && git clone https://github.com/zldrobit/tfjs-yolov5-example.git && cd tfjs-yolov5-example
|
|
|
|
$ npm install
|
|
|
|
$ ln -s ../../yolov5/yolov5s_web_model public/yolov5s_web_model
|
|
|
|
$ npm start
|
2020-06-30 05:00:13 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
import argparse
|
2021-11-09 23:45:02 +08:00
|
|
|
import json
|
2021-10-12 00:47:24 +08:00
|
|
|
import os
|
2022-01-06 06:55:04 +08:00
|
|
|
import platform
|
2021-09-12 21:52:24 +08:00
|
|
|
import subprocess
|
2020-10-05 00:50:32 +08:00
|
|
|
import sys
|
2020-10-06 20:54:02 +08:00
|
|
|
import time
|
2022-02-02 05:59:26 +08:00
|
|
|
import warnings
|
2021-04-27 23:02:07 +08:00
|
|
|
from pathlib import Path
|
2020-10-05 00:50:32 +08:00
|
|
|
|
2022-02-12 23:05:43 +08:00
|
|
|
import pandas as pd
|
2020-08-03 06:47:36 +08:00
|
|
|
import torch
|
2022-05-24 17:30:36 +08:00
|
|
|
import yaml
|
2021-04-24 03:21:58 +08:00
|
|
|
from torch.utils.mobile_optimizer import optimize_for_mobile
|
2020-08-03 06:47:36 +08:00
|
|
|
|
2021-09-12 04:46:33 +08:00
|
|
|
FILE = Path(__file__).resolve()
|
2021-09-18 21:02:08 +08:00
|
|
|
ROOT = FILE.parents[0] # YOLOv5 root directory
|
2021-09-15 17:33:46 +08:00
|
|
|
if str(ROOT) not in sys.path:
|
|
|
|
sys.path.append(str(ROOT)) # add ROOT to PATH
|
2022-03-26 21:18:53 +08:00
|
|
|
if platform.system() != 'Windows':
|
|
|
|
ROOT = Path(os.path.relpath(ROOT, Path.cwd())) # relative
|
2021-06-10 21:35:22 +08:00
|
|
|
|
2020-08-25 12:47:49 +08:00
|
|
|
from models.experimental import attempt_load
|
2022-08-30 22:18:01 +08:00
|
|
|
from models.yolo import ClassificationModel, Detect
|
2022-05-13 20:34:16 +08:00
|
|
|
from utils.dataloaders import LoadImages
|
2022-08-23 19:06:33 +08:00
|
|
|
from utils.general import (LOGGER, Profile, check_dataset, check_img_size, check_requirements, check_version,
|
|
|
|
check_yaml, colorstr, file_size, get_default_args, print_args, url2file)
|
2022-08-14 02:38:51 +08:00
|
|
|
from utils.torch_utils import select_device, smart_inference_mode
|
2020-06-30 05:00:13 +08:00
|
|
|
|
2021-06-10 04:43:46 +08:00
|
|
|
|
2022-02-12 23:05:43 +08:00
|
|
|
def export_formats():
|
|
|
|
# YOLOv5 export formats
|
2022-04-04 04:51:11 +08:00
|
|
|
x = [
|
2022-07-08 05:41:34 +08:00
|
|
|
['PyTorch', '-', '.pt', True, True],
|
|
|
|
['TorchScript', 'torchscript', '.torchscript', True, True],
|
|
|
|
['ONNX', 'onnx', '.onnx', True, True],
|
|
|
|
['OpenVINO', 'openvino', '_openvino_model', True, False],
|
|
|
|
['TensorRT', 'engine', '.engine', False, True],
|
|
|
|
['CoreML', 'coreml', '.mlmodel', True, False],
|
|
|
|
['TensorFlow SavedModel', 'saved_model', '_saved_model', True, True],
|
|
|
|
['TensorFlow GraphDef', 'pb', '.pb', True, True],
|
|
|
|
['TensorFlow Lite', 'tflite', '.tflite', True, False],
|
|
|
|
['TensorFlow Edge TPU', 'edgetpu', '_edgetpu.tflite', False, False],
|
|
|
|
['TensorFlow.js', 'tfjs', '_web_model', False, False],]
|
|
|
|
return pd.DataFrame(x, columns=['Format', 'Argument', 'Suffix', 'CPU', 'GPU'])
|
2022-02-12 23:05:43 +08:00
|
|
|
|
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
def try_export(inner_func):
|
|
|
|
# YOLOv5 export decorator, i..e @try_export
|
|
|
|
inner_args = get_default_args(inner_func)
|
|
|
|
|
|
|
|
def outer_func(*args, **kwargs):
|
|
|
|
prefix = inner_args['prefix']
|
|
|
|
try:
|
|
|
|
with Profile() as dt:
|
|
|
|
f, model = inner_func(*args, **kwargs)
|
|
|
|
LOGGER.info(f'{prefix} export success ✅ {dt.t:.1f}s, saved as {f} ({file_size(f):.1f} MB)')
|
|
|
|
return f, model
|
|
|
|
except Exception as e:
|
|
|
|
LOGGER.info(f'{prefix} export failure ❌ {dt.t:.1f}s: {e}')
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
return outer_func
|
|
|
|
|
|
|
|
|
|
|
|
@try_export
|
2021-09-12 21:52:24 +08:00
|
|
|
def export_torchscript(model, im, file, optimize, prefix=colorstr('TorchScript:')):
|
|
|
|
# YOLOv5 TorchScript model export
|
2022-08-23 19:06:33 +08:00
|
|
|
LOGGER.info(f'\n{prefix} starting export with torch {torch.__version__}...')
|
|
|
|
f = file.with_suffix('.torchscript')
|
2021-09-12 21:52:24 +08:00
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
ts = torch.jit.trace(model, im, strict=False)
|
|
|
|
d = {"shape": im.shape, "stride": int(max(model.stride)), "names": model.names}
|
|
|
|
extra_files = {'config.txt': json.dumps(d)} # torch._C.ExtraFilesMap()
|
|
|
|
if optimize: # https://pytorch.org/tutorials/recipes/mobile_interpreter.html
|
|
|
|
optimize_for_mobile(ts)._save_for_lite_interpreter(str(f), _extra_files=extra_files)
|
|
|
|
else:
|
|
|
|
ts.save(str(f), _extra_files=extra_files)
|
|
|
|
return f, None
|
2021-07-20 19:21:52 +08:00
|
|
|
|
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
@try_export
|
2021-09-12 21:52:24 +08:00
|
|
|
def export_onnx(model, im, file, opset, train, dynamic, simplify, prefix=colorstr('ONNX:')):
|
|
|
|
# YOLOv5 ONNX export
|
2022-08-23 19:06:33 +08:00
|
|
|
check_requirements(('onnx',))
|
|
|
|
import onnx
|
|
|
|
|
|
|
|
LOGGER.info(f'\n{prefix} starting export with onnx {onnx.__version__}...')
|
|
|
|
f = file.with_suffix('.onnx')
|
|
|
|
|
|
|
|
torch.onnx.export(
|
|
|
|
model.cpu() if dynamic else model, # --dynamic only compatible with cpu
|
|
|
|
im.cpu() if dynamic else im,
|
|
|
|
f,
|
|
|
|
verbose=False,
|
|
|
|
opset_version=opset,
|
|
|
|
training=torch.onnx.TrainingMode.TRAINING if train else torch.onnx.TrainingMode.EVAL,
|
|
|
|
do_constant_folding=not train,
|
|
|
|
input_names=['images'],
|
|
|
|
output_names=['output'],
|
|
|
|
dynamic_axes={
|
|
|
|
'images': {
|
|
|
|
0: 'batch',
|
|
|
|
2: 'height',
|
|
|
|
3: 'width'}, # shape(1,3,640,640)
|
|
|
|
'output': {
|
|
|
|
0: 'batch',
|
|
|
|
1: 'anchors'} # shape(1,25200,85)
|
|
|
|
} if dynamic else None)
|
|
|
|
|
|
|
|
# Checks
|
|
|
|
model_onnx = onnx.load(f) # load onnx model
|
|
|
|
onnx.checker.check_model(model_onnx) # check onnx model
|
|
|
|
|
|
|
|
# Metadata
|
|
|
|
d = {'stride': int(max(model.stride)), 'names': model.names}
|
|
|
|
for k, v in d.items():
|
|
|
|
meta = model_onnx.metadata_props.add()
|
|
|
|
meta.key, meta.value = k, str(v)
|
|
|
|
onnx.save(model_onnx, f)
|
|
|
|
|
|
|
|
# Simplify
|
|
|
|
if simplify:
|
|
|
|
try:
|
|
|
|
cuda = torch.cuda.is_available()
|
|
|
|
check_requirements(('onnxruntime-gpu' if cuda else 'onnxruntime', 'onnx-simplifier>=0.4.1'))
|
|
|
|
import onnxsim
|
|
|
|
|
|
|
|
LOGGER.info(f'{prefix} simplifying with onnx-simplifier {onnxsim.__version__}...')
|
|
|
|
model_onnx, check = onnxsim.simplify(model_onnx)
|
|
|
|
assert check, 'assert check failed'
|
|
|
|
onnx.save(model_onnx, f)
|
|
|
|
except Exception as e:
|
|
|
|
LOGGER.info(f'{prefix} simplifier failure: {e}')
|
|
|
|
return f, model_onnx
|
2021-07-20 19:21:52 +08:00
|
|
|
|
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
@try_export
|
2022-05-24 17:30:36 +08:00
|
|
|
def export_openvino(model, file, half, prefix=colorstr('OpenVINO:')):
|
2022-01-04 12:08:15 +08:00
|
|
|
# YOLOv5 OpenVINO export
|
2022-08-23 19:06:33 +08:00
|
|
|
check_requirements(('openvino-dev',)) # requires openvino-dev: https://pypi.org/project/openvino-dev/
|
|
|
|
import openvino.inference_engine as ie
|
2022-01-04 12:08:15 +08:00
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
LOGGER.info(f'\n{prefix} starting export with openvino {ie.__version__}...')
|
|
|
|
f = str(file).replace('.pt', f'_openvino_model{os.sep}')
|
2022-01-04 12:08:15 +08:00
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
cmd = f"mo --input_model {file.with_suffix('.onnx')} --output_dir {f} --data_type {'FP16' if half else 'FP32'}"
|
|
|
|
subprocess.check_output(cmd.split()) # export
|
|
|
|
with open(Path(f) / file.with_suffix('.yaml').name, 'w') as g:
|
|
|
|
yaml.dump({'stride': int(max(model.stride)), 'names': model.names}, g) # add metadata.yaml
|
|
|
|
return f, None
|
2022-01-04 12:08:15 +08:00
|
|
|
|
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
@try_export
|
2022-04-17 00:00:50 +08:00
|
|
|
def export_coreml(model, im, file, int8, half, prefix=colorstr('CoreML:')):
|
2021-09-12 21:52:24 +08:00
|
|
|
# YOLOv5 CoreML export
|
2022-08-23 19:06:33 +08:00
|
|
|
check_requirements(('coremltools',))
|
|
|
|
import coremltools as ct
|
|
|
|
|
|
|
|
LOGGER.info(f'\n{prefix} starting export with coremltools {ct.__version__}...')
|
|
|
|
f = file.with_suffix('.mlmodel')
|
|
|
|
|
|
|
|
ts = torch.jit.trace(model, im, strict=False) # TorchScript model
|
|
|
|
ct_model = ct.convert(ts, inputs=[ct.ImageType('image', shape=im.shape, scale=1 / 255, bias=[0, 0, 0])])
|
|
|
|
bits, mode = (8, 'kmeans_lut') if int8 else (16, 'linear') if half else (32, None)
|
|
|
|
if bits < 32:
|
|
|
|
if platform.system() == 'Darwin': # quantization only supported on macOS
|
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning) # suppress numpy==1.20 float warning
|
|
|
|
ct_model = ct.models.neural_network.quantization_utils.quantize_weights(ct_model, bits, mode)
|
|
|
|
else:
|
|
|
|
print(f'{prefix} quantization only supported on macOS, skipping...')
|
|
|
|
ct_model.save(f)
|
|
|
|
return f, ct_model
|
|
|
|
|
|
|
|
|
|
|
|
@try_export
|
|
|
|
def export_engine(model, im, file, half, dynamic, simplify, workspace=4, verbose=False, prefix=colorstr('TensorRT:')):
|
2022-01-04 12:08:15 +08:00
|
|
|
# YOLOv5 TensorRT export https://developer.nvidia.com/tensorrt
|
2022-08-23 19:06:33 +08:00
|
|
|
assert im.device.type != 'cpu', 'export running on CPU but must be on GPU, i.e. `python export.py --device 0`'
|
2021-12-23 03:29:48 +08:00
|
|
|
try:
|
2022-08-23 19:06:33 +08:00
|
|
|
import tensorrt as trt
|
|
|
|
except Exception:
|
|
|
|
if platform.system() == 'Linux':
|
|
|
|
check_requirements(('nvidia-tensorrt',), cmds=('-U --index-url https://pypi.ngc.nvidia.com',))
|
|
|
|
import tensorrt as trt
|
|
|
|
|
|
|
|
if trt.__version__[0] == '7': # TensorRT 7 handling https://github.com/ultralytics/yolov5/issues/6012
|
|
|
|
grid = model.model[-1].anchor_grid
|
|
|
|
model.model[-1].anchor_grid = [a[..., :1, :1, :] for a in grid]
|
|
|
|
export_onnx(model, im, file, 12, False, dynamic, simplify) # opset 12
|
|
|
|
model.model[-1].anchor_grid = grid
|
|
|
|
else: # TensorRT >= 8
|
|
|
|
check_version(trt.__version__, '8.0.0', hard=True) # require tensorrt>=8.0.0
|
|
|
|
export_onnx(model, im, file, 13, False, dynamic, simplify) # opset 13
|
|
|
|
onnx = file.with_suffix('.onnx')
|
|
|
|
|
|
|
|
LOGGER.info(f'\n{prefix} starting export with TensorRT {trt.__version__}...')
|
|
|
|
assert onnx.exists(), f'failed to export ONNX file: {onnx}'
|
|
|
|
f = file.with_suffix('.engine') # TensorRT engine file
|
|
|
|
logger = trt.Logger(trt.Logger.INFO)
|
|
|
|
if verbose:
|
|
|
|
logger.min_severity = trt.Logger.Severity.VERBOSE
|
|
|
|
|
|
|
|
builder = trt.Builder(logger)
|
|
|
|
config = builder.create_builder_config()
|
|
|
|
config.max_workspace_size = workspace * 1 << 30
|
|
|
|
# config.set_memory_pool_limit(trt.MemoryPoolType.WORKSPACE, workspace << 30) # fix TRT 8.4 deprecation notice
|
|
|
|
|
|
|
|
flag = (1 << int(trt.NetworkDefinitionCreationFlag.EXPLICIT_BATCH))
|
|
|
|
network = builder.create_network(flag)
|
|
|
|
parser = trt.OnnxParser(network, logger)
|
|
|
|
if not parser.parse_from_file(str(onnx)):
|
|
|
|
raise RuntimeError(f'failed to load ONNX file: {onnx}')
|
|
|
|
|
|
|
|
inputs = [network.get_input(i) for i in range(network.num_inputs)]
|
|
|
|
outputs = [network.get_output(i) for i in range(network.num_outputs)]
|
|
|
|
LOGGER.info(f'{prefix} Network Description:')
|
|
|
|
for inp in inputs:
|
|
|
|
LOGGER.info(f'{prefix}\tinput "{inp.name}" with shape {inp.shape} and dtype {inp.dtype}')
|
|
|
|
for out in outputs:
|
|
|
|
LOGGER.info(f'{prefix}\toutput "{out.name}" with shape {out.shape} and dtype {out.dtype}')
|
|
|
|
|
|
|
|
if dynamic:
|
|
|
|
if im.shape[0] <= 1:
|
|
|
|
LOGGER.warning(f"{prefix}WARNING: --dynamic model requires maximum --batch-size argument")
|
|
|
|
profile = builder.create_optimization_profile()
|
2022-01-04 12:08:15 +08:00
|
|
|
for inp in inputs:
|
2022-08-23 19:06:33 +08:00
|
|
|
profile.set_shape(inp.name, (1, *im.shape[1:]), (max(1, im.shape[0] // 2), *im.shape[1:]), im.shape)
|
|
|
|
config.add_optimization_profile(profile)
|
|
|
|
|
|
|
|
LOGGER.info(f'{prefix} building FP{16 if builder.platform_has_fast_fp16 and half else 32} engine in {f}')
|
|
|
|
if builder.platform_has_fast_fp16 and half:
|
|
|
|
config.set_flag(trt.BuilderFlag.FP16)
|
|
|
|
with builder.build_engine(network, config) as engine, open(f, 'wb') as t:
|
|
|
|
t.write(engine.serialize())
|
|
|
|
return f, None
|
2021-12-23 03:29:48 +08:00
|
|
|
|
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
@try_export
|
2022-03-31 22:52:34 +08:00
|
|
|
def export_saved_model(model,
|
|
|
|
im,
|
|
|
|
file,
|
|
|
|
dynamic,
|
|
|
|
tf_nms=False,
|
|
|
|
agnostic_nms=False,
|
|
|
|
topk_per_class=100,
|
|
|
|
topk_all=100,
|
|
|
|
iou_thres=0.45,
|
|
|
|
conf_thres=0.25,
|
|
|
|
keras=False,
|
|
|
|
prefix=colorstr('TensorFlow SavedModel:')):
|
2022-01-04 12:08:15 +08:00
|
|
|
# YOLOv5 TensorFlow SavedModel export
|
2022-08-23 19:06:33 +08:00
|
|
|
import tensorflow as tf
|
|
|
|
from tensorflow.python.framework.convert_to_constants import convert_variables_to_constants_v2
|
|
|
|
|
|
|
|
from models.tf import TFModel
|
|
|
|
|
|
|
|
LOGGER.info(f'\n{prefix} starting export with tensorflow {tf.__version__}...')
|
|
|
|
f = str(file).replace('.pt', '_saved_model')
|
|
|
|
batch_size, ch, *imgsz = list(im.shape) # BCHW
|
|
|
|
|
|
|
|
tf_model = TFModel(cfg=model.yaml, model=model, nc=model.nc, imgsz=imgsz)
|
|
|
|
im = tf.zeros((batch_size, *imgsz, ch)) # BHWC order for TensorFlow
|
|
|
|
_ = tf_model.predict(im, tf_nms, agnostic_nms, topk_per_class, topk_all, iou_thres, conf_thres)
|
|
|
|
inputs = tf.keras.Input(shape=(*imgsz, ch), batch_size=None if dynamic else batch_size)
|
|
|
|
outputs = tf_model.predict(inputs, tf_nms, agnostic_nms, topk_per_class, topk_all, iou_thres, conf_thres)
|
|
|
|
keras_model = tf.keras.Model(inputs=inputs, outputs=outputs)
|
|
|
|
keras_model.trainable = False
|
|
|
|
keras_model.summary()
|
|
|
|
if keras:
|
|
|
|
keras_model.save(f, save_format='tf')
|
|
|
|
else:
|
|
|
|
spec = tf.TensorSpec(keras_model.inputs[0].shape, keras_model.inputs[0].dtype)
|
|
|
|
m = tf.function(lambda x: keras_model(x)) # full model
|
|
|
|
m = m.get_concrete_function(spec)
|
|
|
|
frozen_func = convert_variables_to_constants_v2(m)
|
|
|
|
tfm = tf.Module()
|
|
|
|
tfm.__call__ = tf.function(lambda x: frozen_func(x)[:4] if tf_nms else frozen_func(x)[0], [spec])
|
|
|
|
tfm.__call__(im)
|
|
|
|
tf.saved_model.save(tfm,
|
|
|
|
f,
|
|
|
|
options=tf.saved_model.SaveOptions(experimental_custom_gradients=False) if check_version(
|
|
|
|
tf.__version__, '2.6') else tf.saved_model.SaveOptions())
|
|
|
|
return f, keras_model
|
2021-09-12 21:52:24 +08:00
|
|
|
|
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
@try_export
|
2022-05-19 17:49:13 +08:00
|
|
|
def export_pb(keras_model, file, prefix=colorstr('TensorFlow GraphDef:')):
|
2021-09-12 21:52:24 +08:00
|
|
|
# YOLOv5 TensorFlow GraphDef *.pb export https://github.com/leimao/Frozen_Graph_TensorFlow
|
2022-08-23 19:06:33 +08:00
|
|
|
import tensorflow as tf
|
|
|
|
from tensorflow.python.framework.convert_to_constants import convert_variables_to_constants_v2
|
2021-09-12 21:52:24 +08:00
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
LOGGER.info(f'\n{prefix} starting export with tensorflow {tf.__version__}...')
|
|
|
|
f = file.with_suffix('.pb')
|
2021-09-12 21:52:24 +08:00
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
m = tf.function(lambda x: keras_model(x)) # full model
|
|
|
|
m = m.get_concrete_function(tf.TensorSpec(keras_model.inputs[0].shape, keras_model.inputs[0].dtype))
|
|
|
|
frozen_func = convert_variables_to_constants_v2(m)
|
|
|
|
frozen_func.graph.as_graph_def()
|
|
|
|
tf.io.write_graph(graph_or_graph_def=frozen_func.graph, logdir=str(f.parent), name=f.name, as_text=False)
|
|
|
|
return f, None
|
2021-09-12 21:52:24 +08:00
|
|
|
|
|
|
|
|
2022-08-23 19:06:33 +08:00
|
|
|
@try_export
|
2022-04-05 17:33:08 +08:00
|
|
|
def export_tflite(keras_model, im, file, int8, data, nms, agnostic_nms, prefix=colorstr('TensorFlow Lite:')):
|
2021-09-12 21:52:24 +08:00
|
|
|
# YOLOv5 TensorFlow Lite export
|
2022-08-23 19:06:33 +08:00
|
|
|
import tensorflow as tf
|
|
|
|
|
|
|
|
LOGGER.info(f'\n{prefix} starting export with tensorflow {tf.__version__}...')
|
|
|
|
batch_size, ch, *imgsz = list(im.shape) # BCHW
|
|
|
|
f = str(file).replace('.pt', '-fp16.tflite')
|
|
|
|
|
|
|
|
converter = tf.lite.TFLiteConverter.from_keras_model(keras_model)
|
|
|
|
converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS]
|
|
|
|
converter.target_spec.supported_types = [tf.float16]
|
|
|
|
converter.optimizations = [tf.lite.Optimize.DEFAULT]
|
|
|
|
if int8:
|
|
|
|
from models.tf import representative_dataset_gen
|
|
|
|
dataset = LoadImages(check_dataset(check_yaml(data))['train'], img_size=imgsz, auto=False)
|
|
|
|
converter.representative_dataset = lambda: representative_dataset_gen(dataset, ncalib=100)
|
|
|
|
converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS_INT8]
|
|
|
|
converter.target_spec.supported_types = []
|
|
|
|
converter.inference_input_type = tf.uint8 # or tf.int8
|
|
|
|
converter.inference_output_type = tf.uint8 # or tf.int8
|
|
|
|
converter.experimental_new_quantizer = True
|
|
|
|
f = str(file).replace('.pt', '-int8.tflite')
|
|
|
|
if nms or agnostic_nms:
|
|
|
|
converter.target_spec.supported_ops.append(tf.lite.OpsSet.SELECT_TF_OPS)
|
|
|
|
|
|
|
|
tflite_model = converter.convert()
|
|
|
|
open(f, "wb").write(tflite_model)
|
|
|
|
return f, None
|
|
|
|
|
|
|
|
|
|
|
|
@try_export
|
2022-05-19 17:49:13 +08:00
|
|
|
def export_edgetpu(file, prefix=colorstr('Edge TPU:')):
|
Add EdgeTPU support (#3630)
* Add models/tf.py for TensorFlow and TFLite export
* Set auto=False for int8 calibration
* Update requirements.txt for TensorFlow and TFLite export
* Read anchors directly from PyTorch weights
* Add --tf-nms to append NMS in TensorFlow SavedModel and GraphDef export
* Remove check_anchor_order, check_file, set_logging from import
* Reformat code and optimize imports
* Autodownload model and check cfg
* update --source path, img-size to 320, single output
* Adjust representative_dataset
* Put representative dataset in tfl_int8 block
* detect.py TF inference
* weights to string
* weights to string
* cleanup tf.py
* Add --dynamic-batch-size
* Add xywh normalization to reduce calibration error
* Update requirements.txt
TensorFlow 2.3.1 -> 2.4.0 to avoid int8 quantization error
* Fix imports
Move C3 from models.experimental to models.common
* Add models/tf.py for TensorFlow and TFLite export
* Set auto=False for int8 calibration
* Update requirements.txt for TensorFlow and TFLite export
* Read anchors directly from PyTorch weights
* Add --tf-nms to append NMS in TensorFlow SavedModel and GraphDef export
* Remove check_anchor_order, check_file, set_logging from import
* Reformat code and optimize imports
* Autodownload model and check cfg
* update --source path, img-size to 320, single output
* Adjust representative_dataset
* detect.py TF inference
* Put representative dataset in tfl_int8 block
* weights to string
* weights to string
* cleanup tf.py
* Add --dynamic-batch-size
* Add xywh normalization to reduce calibration error
* Update requirements.txt
TensorFlow 2.3.1 -> 2.4.0 to avoid int8 quantization error
* Fix imports
Move C3 from models.experimental to models.common
* implement C3() and SiLU()
* Add TensorFlow and TFLite Detection
* Add --tfl-detect for TFLite Detection
* Add int8 quantized TFLite inference in detect.py
* Add --edgetpu for Edge TPU detection
* Fix --img-size to add rectangle TensorFlow and TFLite input
* Add --no-tf-nms to detect objects using models combined with TensorFlow NMS
* Fix --img-size list type input
* Update README.md
* Add Android project for TFLite inference
* Upgrade TensorFlow v2.3.1 -> v2.4.0
* Disable normalization of xywh
* Rewrite names init in detect.py
* Change input resolution 640 -> 320 on Android
* Disable NNAPI
* Update README.me --img 640 -> 320
* Update README.me for Edge TPU
* Update README.md
* Fix reshape dim to support dynamic batching
* Fix reshape dim to support dynamic batching
* Add epsilon argument in tf_BN, which is different between TF and PT
* Set stride to None if not using PyTorch, and do not warmup without PyTorch
* Add list support in check_img_size()
* Add list input support in detect.py
* sys.path.append('./') to run from yolov5/
* Add int8 quantization support for TensorFlow 2.5
* Add get_coco128.sh
* Remove --no-tfl-detect in models/tf.py (Use tf-android-tfl-detect branch for EdgeTPU)
* Update requirements.txt
* Replace torch.load() with attempt_load()
* Update requirements.txt
* Add --tf-raw-resize to set half_pixel_centers=False
* Remove android directory
* Update README.md
* Update README.md
* Add multiple OS support for EdgeTPU detection
* Fix export and detect
* Export 3 YOLO heads with Edge TPU models
* Remove xywh denormalization with Edge TPU models in detect.py
* Fix saved_model and pb detect error
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fix pre-commit.ci failure
* Add edgetpu in export.py docstring
* Fix Edge TPU model detection exported by TF 2.7
* Add class names for TF/TFLite in DetectMultibackend
* Fix assignment with nl in TFLite Detection
* Add check when getting Edge TPU compiler version
* Add UTF-8 encoding in opening --data file for Windows
* Remove redundant TensorFlow import
* Add Edge TPU in export.py's docstring
* Add the detect layer in Edge TPU model conversion
* Default `dnn=False`
* Cleanup data.yaml loading
* Update detect.py
* Update val.py
* Comments and generalize data.yaml names
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: unknown <fangjiacong@ut.cn>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2022-01-01 01:47:52 +08:00
|
|
|
# YOLOv5 Edge TPU export https://coral.ai/docs/edgetpu/models-intro/
|
2022-08-23 19:06:33 +08:00
|
|
|
cmd = 'edgetpu_compiler --version'
|
|
|
|
help_url = 'https://coral.ai/docs/edgetpu/compiler/'
|
|
|
|
assert platform.system() == 'Linux', f'export only supported on Linux. See {help_url}'
|
|
|
|
if subprocess.run(f'{cmd} >/dev/null', shell=True).returncode != 0:
|
|
|
|
LOGGER.info(f'\n{prefix} export requires Edge TPU compiler. Attempting install from {help_url}')
|
|
|
|
sudo = subprocess.run('sudo --version >/dev/null', shell=True).returncode == 0 # sudo installed on system
|
|
|
|
for c in (
|
|
|
|
'curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -',
|
|
|
|
'echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" | sudo tee /etc/apt/sources.list.d/coral-edgetpu.list',
|
|
|
|
'sudo apt-get update', 'sudo apt-get install edgetpu-compiler'):
|
|
|
|
subprocess.run(c if sudo else c.replace('sudo ', ''), shell=True, check=True)
|
|
|
|
ver = subprocess.run(cmd, shell=True, capture_output=True, check=True).stdout.decode().split()[-1]
|
|
|
|
|
|
|
|
LOGGER.info(f'\n{prefix} starting export with Edge TPU compiler {ver}...')
|
|
|
|
f = str(file).replace('.pt', '-int8_edgetpu.tflite') # Edge TPU model
|
|
|
|
f_tfl = str(file).replace('.pt', '-int8.tflite') # TFLite model
|
|
|
|
|
|
|
|
cmd = f"edgetpu_compiler -s -d -k 10 --out_dir {file.parent} {f_tfl}"
|
|
|
|
subprocess.run(cmd.split(), check=True)
|
|
|
|
return f, None
|
|
|
|
|
|
|
|
|
|
|
|
@try_export
|
2022-05-19 17:49:13 +08:00
|
|
|
def export_tfjs(file, prefix=colorstr('TensorFlow.js:')):
|
2021-09-12 21:52:24 +08:00
|
|
|
# YOLOv5 TensorFlow.js export
|
2022-08-23 19:06:33 +08:00
|
|
|
check_requirements(('tensorflowjs',))
|
|
|
|
import re
|
|
|
|
|
|
|
|
import tensorflowjs as tfjs
|
|
|
|
|
|
|
|
LOGGER.info(f'\n{prefix} starting export with tensorflowjs {tfjs.__version__}...')
|
|
|
|
f = str(file).replace('.pt', '_web_model') # js dir
|
|
|
|
f_pb = file.with_suffix('.pb') # *.pb path
|
|
|
|
f_json = f'{f}/model.json' # *.json path
|
|
|
|
|
|
|
|
cmd = f'tensorflowjs_converter --input_format=tf_frozen_model ' \
|
|
|
|
f'--output_node_names=Identity,Identity_1,Identity_2,Identity_3 {f_pb} {f}'
|
|
|
|
subprocess.run(cmd.split())
|
|
|
|
|
|
|
|
json = Path(f_json).read_text()
|
|
|
|
with open(f_json, 'w') as j: # sort JSON Identity_* in ascending order
|
|
|
|
subst = re.sub(
|
|
|
|
r'{"outputs": {"Identity.?.?": {"name": "Identity.?.?"}, '
|
|
|
|
r'"Identity.?.?": {"name": "Identity.?.?"}, '
|
|
|
|
r'"Identity.?.?": {"name": "Identity.?.?"}, '
|
|
|
|
r'"Identity.?.?": {"name": "Identity.?.?"}}}', r'{"outputs": {"Identity": {"name": "Identity"}, '
|
|
|
|
r'"Identity_1": {"name": "Identity_1"}, '
|
|
|
|
r'"Identity_2": {"name": "Identity_2"}, '
|
|
|
|
r'"Identity_3": {"name": "Identity_3"}}}', json)
|
|
|
|
j.write(subst)
|
|
|
|
return f, None
|
2021-09-12 21:52:24 +08:00
|
|
|
|
|
|
|
|
2022-08-14 02:38:51 +08:00
|
|
|
@smart_inference_mode()
|
2022-03-31 22:52:34 +08:00
|
|
|
def run(
|
|
|
|
data=ROOT / 'data/coco128.yaml', # 'dataset.yaml path'
|
2021-09-12 21:52:24 +08:00
|
|
|
weights=ROOT / 'yolov5s.pt', # weights path
|
|
|
|
imgsz=(640, 640), # image (height, width)
|
2021-06-21 23:25:04 +08:00
|
|
|
batch_size=1, # batch size
|
|
|
|
device='cpu', # cuda device, i.e. 0 or 0,1,2,3 or cpu
|
2021-12-23 03:29:48 +08:00
|
|
|
include=('torchscript', 'onnx'), # include formats
|
2021-06-21 23:25:04 +08:00
|
|
|
half=False, # FP16 half-precision export
|
|
|
|
inplace=False, # set YOLOv5 Detect() inplace=True
|
|
|
|
train=False, # model.train() mode
|
2022-05-22 19:33:36 +08:00
|
|
|
keras=False, # use Keras
|
2021-06-21 23:25:04 +08:00
|
|
|
optimize=False, # TorchScript: optimize for mobile
|
2021-09-15 17:33:46 +08:00
|
|
|
int8=False, # CoreML/TF INT8 quantization
|
2022-07-29 19:51:16 +08:00
|
|
|
dynamic=False, # ONNX/TF/TensorRT: dynamic axes
|
2021-06-21 23:25:04 +08:00
|
|
|
simplify=False, # ONNX: simplify model
|
2021-12-23 03:29:48 +08:00
|
|
|
opset=12, # ONNX: opset version
|
2021-11-22 21:58:07 +08:00
|
|
|
verbose=False, # TensorRT: verbose log
|
|
|
|
workspace=4, # TensorRT: workspace size (GB)
|
2021-12-11 01:24:32 +08:00
|
|
|
nms=False, # TF: add NMS to model
|
|
|
|
agnostic_nms=False, # TF: add agnostic NMS to model
|
2021-09-25 05:18:15 +08:00
|
|
|
topk_per_class=100, # TF.js NMS: topk per class to keep
|
|
|
|
topk_all=100, # TF.js NMS: topk for all classes to keep
|
|
|
|
iou_thres=0.45, # TF.js NMS: IoU threshold
|
2022-03-31 22:52:34 +08:00
|
|
|
conf_thres=0.25, # TF.js NMS: confidence threshold
|
|
|
|
):
|
2020-10-06 20:54:02 +08:00
|
|
|
t = time.time()
|
2022-02-19 23:08:33 +08:00
|
|
|
include = [x.lower() for x in include] # to lowercase
|
2022-05-26 22:07:58 +08:00
|
|
|
fmts = tuple(export_formats()['Argument'][1:]) # --include arguments
|
|
|
|
flags = [x in include for x in fmts]
|
|
|
|
assert sum(flags) == len(include), f'ERROR: Invalid --include {include}, valid --include arguments are {fmts}'
|
2022-02-19 23:08:33 +08:00
|
|
|
jit, onnx, xml, engine, coreml, saved_model, pb, tflite, edgetpu, tfjs = flags # export booleans
|
|
|
|
file = Path(url2file(weights) if str(weights).startswith(('http:/', 'https:/')) else weights) # PyTorch weights
|
2020-06-30 05:00:13 +08:00
|
|
|
|
|
|
|
# Load PyTorch model
|
2021-06-10 04:43:46 +08:00
|
|
|
device = select_device(device)
|
2022-04-17 00:00:50 +08:00
|
|
|
if half:
|
2022-07-08 19:49:20 +08:00
|
|
|
assert device.type != 'cpu' or coreml, '--half only compatible with GPU export, i.e. use --device 0'
|
2022-05-03 00:00:24 +08:00
|
|
|
assert not dynamic, '--half not compatible with --dynamic, i.e. use either --half or --dynamic but not both'
|
2022-05-24 19:34:32 +08:00
|
|
|
model = attempt_load(weights, device=device, inplace=True, fuse=True) # load FP32 model
|
2020-10-06 20:54:02 +08:00
|
|
|
|
2022-02-05 22:22:59 +08:00
|
|
|
# Checks
|
|
|
|
imgsz *= 2 if len(imgsz) == 1 else 1 # expand
|
2022-07-15 22:01:01 +08:00
|
|
|
if optimize:
|
2022-07-20 01:01:24 +08:00
|
|
|
assert device.type == 'cpu', '--optimize not compatible with cuda devices, i.e. use --device cpu'
|
2022-02-05 22:22:59 +08:00
|
|
|
|
2021-06-08 16:22:10 +08:00
|
|
|
# Input
|
2020-10-06 20:54:02 +08:00
|
|
|
gs = int(max(model.stride)) # grid size (max stride)
|
2021-09-12 21:52:24 +08:00
|
|
|
imgsz = [check_img_size(x, gs) for x in imgsz] # verify img_size are gs-multiples
|
|
|
|
im = torch.zeros(batch_size, 3, *imgsz).to(device) # image size(1,3,320,192) BCHW iDetection
|
2020-10-11 22:23:36 +08:00
|
|
|
|
2020-08-25 10:27:54 +08:00
|
|
|
# Update model
|
2021-06-10 04:43:46 +08:00
|
|
|
model.train() if train else model.eval() # training mode = no Detect() layer grid construction
|
2020-08-25 12:47:49 +08:00
|
|
|
for k, m in model.named_modules():
|
2022-04-04 00:45:05 +08:00
|
|
|
if isinstance(m, Detect):
|
2021-06-10 04:43:46 +08:00
|
|
|
m.inplace = inplace
|
2022-08-26 20:34:28 +08:00
|
|
|
m.dynamic = dynamic
|
2022-04-04 03:29:20 +08:00
|
|
|
m.export = True
|
2021-05-04 01:01:29 +08:00
|
|
|
|
2021-04-24 06:10:38 +08:00
|
|
|
for _ in range(2):
|
2021-09-12 21:52:24 +08:00
|
|
|
y = model(im) # dry runs
|
2022-06-28 21:22:15 +08:00
|
|
|
if half and not coreml:
|
|
|
|
im, model = im.half(), model.half() # to FP16
|
New YOLOv5 Classification Models (#8956)
* Update
* Logger step fix: Increment step with epochs (#8654)
* enhance
* revert
* allow training from scratch
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Update --img argument from train.py
single line
* fix image size from 640 to 128
* suport custom dataloader and augmentation
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* format
* Update dataloaders.py
* Single line return, single line comment, remove unused argument
* address PR comments
* fix spelling
* don't augment eval set
* use fstring
* update augmentations.py
* new maning convention for transforms
* reverse if statement, inline ops
* reverse if statement, inline ops
* updates
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* update dataloaders
* Remove additional if statement
* Remove is_train as redundant
* Cleanup
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Cleanup2
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Update classifier.py
* Update augmentations.py
* fix: imshow clip warning
* update
* Revert ToTensorV2 removal
* Update classifier.py
* Update normalize values, revert uint8
* normalize image using cv2
* remove dedundant comment
* Update classifier.py
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* replace print with logger
* commit steps
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Allow logging models from GenericLogger (#8676)
* enhance
* revert
* allow training from scratch
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Update --img argument from train.py
single line
* fix image size from 640 to 128
* suport custom dataloader and augmentation
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* format
* Update dataloaders.py
* Single line return, single line comment, remove unused argument
* address PR comments
* fix spelling
* don't augment eval set
* use fstring
* update augmentations.py
* new maning convention for transforms
* reverse if statement, inline ops
* reverse if statement, inline ops
* updates
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* update dataloaders
* Remove additional if statement
* Remove is_train as redundant
* Cleanup
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Cleanup2
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Update classifier.py
* Update augmentations.py
* fix: imshow clip warning
* update
* Revert ToTensorV2 removal
* Update classifier.py
* Update normalize values, revert uint8
* normalize image using cv2
* remove dedundant comment
* Update classifier.py
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* replace print with logger
* commit steps
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* support final model logging
* update
* update
* update
* update
* remove curses
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Update classifier.py
* Update __init__.py
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
* Update
* Update
* Update
* Update
* Update dataset download
* Update dataset download
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Pass imgsz to classify_transforms()
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Cos scheduler
* Cos scheduler
* Remove unused args
* Update
* Add seed
* Add seed
* Update
* Update
* Add run(), main()
* Merge master
* Merge master
* Update
* Update
* Update
* Update
* Update
* Update
* Update
* Create YOLOv5 BaseModel class (#8829)
* Create BaseModel
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* fix
* Hub load device fix
* Update
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Add experiment
* Merge master
* Attach names
* weight decay = 1e-4
* weight decay = 5e-5
* update smart_optimizer console printout
* fashion-mnist fix
* Merge master
* Update Table
* Update Table
* Remove destroy process group
* add kwargs to forward()
* fuse fix for resnet50
* nc, names fix for resnet50
* nc, names fix for resnet50
* ONNX CPU inference fix
* revert
* cuda
* if augment or visualize
* if augment or visualize
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* New smart_inference_mode()
* Update README
* Refactor into /classify dir
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* reset defaults
* reset defaults
* fix gpu predict
* warmup
* ema half fix
* spacing
* remove data
* remove cache
* remove denormalize
* save run settings
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* verbose false on initial plots
* new save_yaml() function
* Update ci-testing.yml
* Path(data) CI fix
* Separate classification CI
* fix val
* fix val
* fix val
* smartCrossEntropyLoss
* skip validation on hub load
* autodownload with working dir root
* str(data)
* Dataset usage example
* im_show normalize
* im_show normalize
* add imagenet simple names to multibackend
* Add validation speeds
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* 24-space names
* Update bash scripts
* Update permissions
* Add bash script arguments
* remove verbose
* TRT data fix
* names generator fix
* optimize if names
* update usage
* Add local loading
* Verbose=False
* update names printing
* Add Usage examples
* Add Usage examples
* Add Usage examples
* Add Usage examples
* named_children
* reshape_classifier_outputs
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* update
* update
* fix CI
* fix incorrect class substitution
* fix incorrect class substitution
* remove denormalize
* ravel fix
* cleanup
* update opt file printing
* update opt file printing
* update defaults
* add opt to checkpoint
* Add warning
* Add comment
* plot half bug fix
* Use NotImplementedError
* fix export shape report
* Fix TRT load
* cleanup CI
* profile comment
* CI fix
* Add cls models
* avoid inplace error
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fix usage examples
* Update README
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
* Update README
Co-authored-by: Ayush Chaurasia <ayush.chaurarsia@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2022-08-17 17:59:01 +08:00
|
|
|
shape = tuple((y[0] if isinstance(y, tuple) else y).shape) # model output shape
|
2022-02-05 22:22:59 +08:00
|
|
|
LOGGER.info(f"\n{colorstr('PyTorch:')} starting from {file} with output shape {shape} ({file_size(file):.1f} MB)")
|
2020-06-30 05:00:13 +08:00
|
|
|
|
2021-07-20 19:21:52 +08:00
|
|
|
# Exports
|
2022-01-19 09:18:23 +08:00
|
|
|
f = [''] * 10 # exported filenames
|
2022-02-02 06:52:50 +08:00
|
|
|
warnings.filterwarnings(action='ignore', category=torch.jit.TracerWarning) # suppress TracerWarning
|
2022-02-19 23:08:33 +08:00
|
|
|
if jit:
|
2022-08-23 19:06:33 +08:00
|
|
|
f[0], _ = export_torchscript(model, im, file, optimize)
|
2022-02-19 23:08:33 +08:00
|
|
|
if engine: # TensorRT required before ONNX
|
2022-08-23 19:06:33 +08:00
|
|
|
f[1], _ = export_engine(model, im, file, half, dynamic, simplify, workspace, verbose)
|
2022-02-19 23:08:33 +08:00
|
|
|
if onnx or xml: # OpenVINO requires ONNX
|
2022-08-23 19:06:33 +08:00
|
|
|
f[2], _ = export_onnx(model, im, file, opset, train, dynamic, simplify)
|
2022-02-19 23:08:33 +08:00
|
|
|
if xml: # OpenVINO
|
2022-08-23 19:06:33 +08:00
|
|
|
f[3], _ = export_openvino(model, file, half)
|
2022-02-19 23:08:33 +08:00
|
|
|
if coreml:
|
2022-08-23 19:06:33 +08:00
|
|
|
f[4], _ = export_coreml(model, im, file, int8, half)
|
2021-09-12 21:52:24 +08:00
|
|
|
|
|
|
|
# TensorFlow Exports
|
2022-02-19 23:08:33 +08:00
|
|
|
if any((saved_model, pb, tflite, edgetpu, tfjs)):
|
2022-01-06 06:55:04 +08:00
|
|
|
if int8 or edgetpu: # TFLite --int8 bug https://github.com/ultralytics/yolov5/issues/5707
|
2022-01-06 05:34:36 +08:00
|
|
|
check_requirements(('flatbuffers==1.12',)) # required before `import tensorflow`
|
2022-05-26 22:07:58 +08:00
|
|
|
assert not tflite or not tfjs, 'TFLite and TF.js models must be exported separately, please pass only one type.'
|
2022-08-30 22:18:01 +08:00
|
|
|
assert not isinstance(model, ClassificationModel), 'ClassificationModel export to TF formats not yet supported.'
|
2022-08-23 19:06:33 +08:00
|
|
|
f[5], model = export_saved_model(model.cpu(),
|
2022-03-31 22:52:34 +08:00
|
|
|
im,
|
|
|
|
file,
|
|
|
|
dynamic,
|
|
|
|
tf_nms=nms or agnostic_nms or tfjs,
|
|
|
|
agnostic_nms=agnostic_nms or tfjs,
|
|
|
|
topk_per_class=topk_per_class,
|
|
|
|
topk_all=topk_all,
|
2022-05-22 19:33:36 +08:00
|
|
|
iou_thres=iou_thres,
|
2022-03-31 22:52:34 +08:00
|
|
|
conf_thres=conf_thres,
|
2022-05-22 19:33:36 +08:00
|
|
|
keras=keras)
|
2021-09-12 21:52:24 +08:00
|
|
|
if pb or tfjs: # pb prerequisite to tfjs
|
2022-08-23 19:06:33 +08:00
|
|
|
f[6], _ = export_pb(model, file)
|
Add EdgeTPU support (#3630)
* Add models/tf.py for TensorFlow and TFLite export
* Set auto=False for int8 calibration
* Update requirements.txt for TensorFlow and TFLite export
* Read anchors directly from PyTorch weights
* Add --tf-nms to append NMS in TensorFlow SavedModel and GraphDef export
* Remove check_anchor_order, check_file, set_logging from import
* Reformat code and optimize imports
* Autodownload model and check cfg
* update --source path, img-size to 320, single output
* Adjust representative_dataset
* Put representative dataset in tfl_int8 block
* detect.py TF inference
* weights to string
* weights to string
* cleanup tf.py
* Add --dynamic-batch-size
* Add xywh normalization to reduce calibration error
* Update requirements.txt
TensorFlow 2.3.1 -> 2.4.0 to avoid int8 quantization error
* Fix imports
Move C3 from models.experimental to models.common
* Add models/tf.py for TensorFlow and TFLite export
* Set auto=False for int8 calibration
* Update requirements.txt for TensorFlow and TFLite export
* Read anchors directly from PyTorch weights
* Add --tf-nms to append NMS in TensorFlow SavedModel and GraphDef export
* Remove check_anchor_order, check_file, set_logging from import
* Reformat code and optimize imports
* Autodownload model and check cfg
* update --source path, img-size to 320, single output
* Adjust representative_dataset
* detect.py TF inference
* Put representative dataset in tfl_int8 block
* weights to string
* weights to string
* cleanup tf.py
* Add --dynamic-batch-size
* Add xywh normalization to reduce calibration error
* Update requirements.txt
TensorFlow 2.3.1 -> 2.4.0 to avoid int8 quantization error
* Fix imports
Move C3 from models.experimental to models.common
* implement C3() and SiLU()
* Add TensorFlow and TFLite Detection
* Add --tfl-detect for TFLite Detection
* Add int8 quantized TFLite inference in detect.py
* Add --edgetpu for Edge TPU detection
* Fix --img-size to add rectangle TensorFlow and TFLite input
* Add --no-tf-nms to detect objects using models combined with TensorFlow NMS
* Fix --img-size list type input
* Update README.md
* Add Android project for TFLite inference
* Upgrade TensorFlow v2.3.1 -> v2.4.0
* Disable normalization of xywh
* Rewrite names init in detect.py
* Change input resolution 640 -> 320 on Android
* Disable NNAPI
* Update README.me --img 640 -> 320
* Update README.me for Edge TPU
* Update README.md
* Fix reshape dim to support dynamic batching
* Fix reshape dim to support dynamic batching
* Add epsilon argument in tf_BN, which is different between TF and PT
* Set stride to None if not using PyTorch, and do not warmup without PyTorch
* Add list support in check_img_size()
* Add list input support in detect.py
* sys.path.append('./') to run from yolov5/
* Add int8 quantization support for TensorFlow 2.5
* Add get_coco128.sh
* Remove --no-tfl-detect in models/tf.py (Use tf-android-tfl-detect branch for EdgeTPU)
* Update requirements.txt
* Replace torch.load() with attempt_load()
* Update requirements.txt
* Add --tf-raw-resize to set half_pixel_centers=False
* Remove android directory
* Update README.md
* Update README.md
* Add multiple OS support for EdgeTPU detection
* Fix export and detect
* Export 3 YOLO heads with Edge TPU models
* Remove xywh denormalization with Edge TPU models in detect.py
* Fix saved_model and pb detect error
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fix pre-commit.ci failure
* Add edgetpu in export.py docstring
* Fix Edge TPU model detection exported by TF 2.7
* Add class names for TF/TFLite in DetectMultibackend
* Fix assignment with nl in TFLite Detection
* Add check when getting Edge TPU compiler version
* Add UTF-8 encoding in opening --data file for Windows
* Remove redundant TensorFlow import
* Add Edge TPU in export.py's docstring
* Add the detect layer in Edge TPU model conversion
* Default `dnn=False`
* Cleanup data.yaml loading
* Update detect.py
* Update val.py
* Comments and generalize data.yaml names
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: unknown <fangjiacong@ut.cn>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2022-01-01 01:47:52 +08:00
|
|
|
if tflite or edgetpu:
|
2022-08-23 19:06:33 +08:00
|
|
|
f[7], _ = export_tflite(model, im, file, int8 or edgetpu, data=data, nms=nms, agnostic_nms=agnostic_nms)
|
Add EdgeTPU support (#3630)
* Add models/tf.py for TensorFlow and TFLite export
* Set auto=False for int8 calibration
* Update requirements.txt for TensorFlow and TFLite export
* Read anchors directly from PyTorch weights
* Add --tf-nms to append NMS in TensorFlow SavedModel and GraphDef export
* Remove check_anchor_order, check_file, set_logging from import
* Reformat code and optimize imports
* Autodownload model and check cfg
* update --source path, img-size to 320, single output
* Adjust representative_dataset
* Put representative dataset in tfl_int8 block
* detect.py TF inference
* weights to string
* weights to string
* cleanup tf.py
* Add --dynamic-batch-size
* Add xywh normalization to reduce calibration error
* Update requirements.txt
TensorFlow 2.3.1 -> 2.4.0 to avoid int8 quantization error
* Fix imports
Move C3 from models.experimental to models.common
* Add models/tf.py for TensorFlow and TFLite export
* Set auto=False for int8 calibration
* Update requirements.txt for TensorFlow and TFLite export
* Read anchors directly from PyTorch weights
* Add --tf-nms to append NMS in TensorFlow SavedModel and GraphDef export
* Remove check_anchor_order, check_file, set_logging from import
* Reformat code and optimize imports
* Autodownload model and check cfg
* update --source path, img-size to 320, single output
* Adjust representative_dataset
* detect.py TF inference
* Put representative dataset in tfl_int8 block
* weights to string
* weights to string
* cleanup tf.py
* Add --dynamic-batch-size
* Add xywh normalization to reduce calibration error
* Update requirements.txt
TensorFlow 2.3.1 -> 2.4.0 to avoid int8 quantization error
* Fix imports
Move C3 from models.experimental to models.common
* implement C3() and SiLU()
* Add TensorFlow and TFLite Detection
* Add --tfl-detect for TFLite Detection
* Add int8 quantized TFLite inference in detect.py
* Add --edgetpu for Edge TPU detection
* Fix --img-size to add rectangle TensorFlow and TFLite input
* Add --no-tf-nms to detect objects using models combined with TensorFlow NMS
* Fix --img-size list type input
* Update README.md
* Add Android project for TFLite inference
* Upgrade TensorFlow v2.3.1 -> v2.4.0
* Disable normalization of xywh
* Rewrite names init in detect.py
* Change input resolution 640 -> 320 on Android
* Disable NNAPI
* Update README.me --img 640 -> 320
* Update README.me for Edge TPU
* Update README.md
* Fix reshape dim to support dynamic batching
* Fix reshape dim to support dynamic batching
* Add epsilon argument in tf_BN, which is different between TF and PT
* Set stride to None if not using PyTorch, and do not warmup without PyTorch
* Add list support in check_img_size()
* Add list input support in detect.py
* sys.path.append('./') to run from yolov5/
* Add int8 quantization support for TensorFlow 2.5
* Add get_coco128.sh
* Remove --no-tfl-detect in models/tf.py (Use tf-android-tfl-detect branch for EdgeTPU)
* Update requirements.txt
* Replace torch.load() with attempt_load()
* Update requirements.txt
* Add --tf-raw-resize to set half_pixel_centers=False
* Remove android directory
* Update README.md
* Update README.md
* Add multiple OS support for EdgeTPU detection
* Fix export and detect
* Export 3 YOLO heads with Edge TPU models
* Remove xywh denormalization with Edge TPU models in detect.py
* Fix saved_model and pb detect error
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fix pre-commit.ci failure
* Add edgetpu in export.py docstring
* Fix Edge TPU model detection exported by TF 2.7
* Add class names for TF/TFLite in DetectMultibackend
* Fix assignment with nl in TFLite Detection
* Add check when getting Edge TPU compiler version
* Add UTF-8 encoding in opening --data file for Windows
* Remove redundant TensorFlow import
* Add Edge TPU in export.py's docstring
* Add the detect layer in Edge TPU model conversion
* Default `dnn=False`
* Cleanup data.yaml loading
* Update detect.py
* Update val.py
* Comments and generalize data.yaml names
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: unknown <fangjiacong@ut.cn>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2022-01-01 01:47:52 +08:00
|
|
|
if edgetpu:
|
2022-08-23 19:06:33 +08:00
|
|
|
f[8], _ = export_edgetpu(file)
|
2021-09-12 21:52:24 +08:00
|
|
|
if tfjs:
|
2022-08-23 19:06:33 +08:00
|
|
|
f[9], _ = export_tfjs(file)
|
2020-07-05 08:13:43 +08:00
|
|
|
|
2020-07-04 02:50:59 +08:00
|
|
|
# Finish
|
2022-01-19 09:18:23 +08:00
|
|
|
f = [str(x) for x in f if x] # filter out '' and None
|
2022-02-08 19:20:39 +08:00
|
|
|
if any(f):
|
2022-07-08 06:46:56 +08:00
|
|
|
h = '--half' if half else '' # --half FP16 inference arg
|
2022-08-23 19:06:33 +08:00
|
|
|
LOGGER.info(f'\nExport complete ({time.time() - t:.1f}s)'
|
2022-02-08 19:20:39 +08:00
|
|
|
f"\nResults saved to {colorstr('bold', file.parent.resolve())}"
|
2022-07-08 06:46:56 +08:00
|
|
|
f"\nDetect: python detect.py --weights {f[-1]} {h}"
|
|
|
|
f"\nValidate: python val.py --weights {f[-1]} {h}"
|
2022-02-08 19:20:39 +08:00
|
|
|
f"\nPyTorch Hub: model = torch.hub.load('ultralytics/yolov5', 'custom', '{f[-1]}')"
|
|
|
|
f"\nVisualize: https://netron.app")
|
2022-01-19 09:18:23 +08:00
|
|
|
return f # return list of exported files/dirs
|
2021-06-10 04:43:46 +08:00
|
|
|
|
|
|
|
|
2021-06-19 18:06:59 +08:00
|
|
|
def parse_opt():
|
2021-06-10 04:43:46 +08:00
|
|
|
parser = argparse.ArgumentParser()
|
2021-09-12 21:52:24 +08:00
|
|
|
parser.add_argument('--data', type=str, default=ROOT / 'data/coco128.yaml', help='dataset.yaml path')
|
2021-12-04 23:28:40 +08:00
|
|
|
parser.add_argument('--weights', nargs='+', type=str, default=ROOT / 'yolov5s.pt', help='model.pt path(s)')
|
2021-09-12 21:52:24 +08:00
|
|
|
parser.add_argument('--imgsz', '--img', '--img-size', nargs='+', type=int, default=[640, 640], help='image (h, w)')
|
2021-06-10 04:43:46 +08:00
|
|
|
parser.add_argument('--batch-size', type=int, default=1, help='batch size')
|
|
|
|
parser.add_argument('--device', default='cpu', help='cuda device, i.e. 0 or 0,1,2,3 or cpu')
|
|
|
|
parser.add_argument('--half', action='store_true', help='FP16 half-precision export')
|
|
|
|
parser.add_argument('--inplace', action='store_true', help='set YOLOv5 Detect() inplace=True')
|
|
|
|
parser.add_argument('--train', action='store_true', help='model.train() mode')
|
2022-05-22 19:33:36 +08:00
|
|
|
parser.add_argument('--keras', action='store_true', help='TF: use Keras')
|
2021-06-10 04:43:46 +08:00
|
|
|
parser.add_argument('--optimize', action='store_true', help='TorchScript: optimize for mobile')
|
2021-09-15 17:33:46 +08:00
|
|
|
parser.add_argument('--int8', action='store_true', help='CoreML/TF INT8 quantization')
|
2022-07-29 19:51:16 +08:00
|
|
|
parser.add_argument('--dynamic', action='store_true', help='ONNX/TF/TensorRT: dynamic axes')
|
2021-06-10 04:43:46 +08:00
|
|
|
parser.add_argument('--simplify', action='store_true', help='ONNX: simplify model')
|
2021-12-23 03:29:48 +08:00
|
|
|
parser.add_argument('--opset', type=int, default=12, help='ONNX: opset version')
|
2021-11-22 21:58:07 +08:00
|
|
|
parser.add_argument('--verbose', action='store_true', help='TensorRT: verbose log')
|
|
|
|
parser.add_argument('--workspace', type=int, default=4, help='TensorRT: workspace size (GB)')
|
2021-12-11 01:24:32 +08:00
|
|
|
parser.add_argument('--nms', action='store_true', help='TF: add NMS to model')
|
|
|
|
parser.add_argument('--agnostic-nms', action='store_true', help='TF: add agnostic NMS to model')
|
2021-09-25 05:18:15 +08:00
|
|
|
parser.add_argument('--topk-per-class', type=int, default=100, help='TF.js NMS: topk per class to keep')
|
|
|
|
parser.add_argument('--topk-all', type=int, default=100, help='TF.js NMS: topk for all classes to keep')
|
|
|
|
parser.add_argument('--iou-thres', type=float, default=0.45, help='TF.js NMS: IoU threshold')
|
|
|
|
parser.add_argument('--conf-thres', type=float, default=0.25, help='TF.js NMS: confidence threshold')
|
2022-03-31 22:52:34 +08:00
|
|
|
parser.add_argument('--include',
|
|
|
|
nargs='+',
|
2022-08-18 20:06:15 +08:00
|
|
|
default=['torchscript'],
|
2022-01-13 09:48:40 +08:00
|
|
|
help='torchscript, onnx, openvino, engine, coreml, saved_model, pb, tflite, edgetpu, tfjs')
|
2021-06-10 04:43:46 +08:00
|
|
|
opt = parser.parse_args()
|
2022-03-31 23:11:43 +08:00
|
|
|
print_args(vars(opt))
|
2021-06-19 18:06:59 +08:00
|
|
|
return opt
|
|
|
|
|
|
|
|
|
|
|
|
def main(opt):
|
2022-02-02 06:52:50 +08:00
|
|
|
for opt.weights in (opt.weights if isinstance(opt.weights, list) else [opt.weights]):
|
|
|
|
run(**vars(opt))
|
2021-06-19 18:06:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
opt = parse_opt()
|
|
|
|
main(opt)
|