ONNX
model_navigator.api.config.OnnxConfig
dataclass
Bases: CustomConfigForFormat
ONNX custom config used for ONNX export and conversion.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
opset |
Optional[int]
|
ONNX opset used for conversion. |
DEFAULT_ONNX_OPSET
|
dynamic_axes |
Optional[Dict[str, Union[Dict[int, str], List[int]]]]
|
Dynamic axes for ONNX conversion. |
None
|
onnx_extended_conversion |
bool
|
Enables additional conversions from TorchScript to ONNX. |
False
|
model_navigator.api.onnx
ONNX optimize API.
optimize(model, dataloader, sample_count=DEFAULT_SAMPLE_COUNT, batching=True, target_formats=None, runners=None, profiler_config=None, workspace=None, verbose=False, debug=False, verify_func=None, custom_configs=None)
Function exports ONNX model to all supported formats.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
Union[Path, str]
|
ONNX model path or string |
required |
dataloader |
SizedDataLoader
|
Sized iterable with data that will be feed to the model |
required |
sample_count |
int
|
Limits how many samples will be used from dataloader |
DEFAULT_SAMPLE_COUNT
|
batching |
Optional[bool]
|
Enable or disable batching on first (index 0) dimension of the model |
True
|
target_formats |
Optional[Union[Union[str, Format], Tuple[Union[str, Format], ...]]]
|
Target model formats for optimize process |
None
|
runners |
Optional[Union[Union[str, Type[NavigatorRunner]], Tuple[Union[str, Type[NavigatorRunner]], ...]]]
|
Use only runners provided as parameter |
None
|
profiler_config |
Optional[ProfilerConfig]
|
Profiling config |
None
|
workspace |
Optional[Path]
|
Workspace where packages will be extracted |
None
|
verbose |
bool
|
Enable verbose logging |
False
|
debug |
bool
|
Enable debug logging from commands |
False
|
verify_func |
Optional[VerifyFunction]
|
Function for additional model verification |
None
|
custom_configs |
Optional[Sequence[CustomConfig]]
|
Sequence of CustomConfigs used to control produced artifacts |
None
|
Returns:
Type | Description |
---|---|
Package
|
Package descriptor representing created package. |
Source code in model_navigator/api/onnx.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
|