PyTorch
model_navigator.api.config.JitType
model_navigator.api.config.TorchConfig
dataclass
Bases: CustomConfigForFormat
Torch custom config used for TorchScript models export.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
jit_type |
Union[Union[str, JitType], Tuple[Union[str, JitType], ...]]
|
Type of TorchScript export. |
(JitType.SCRIPT, JitType.TRACE)
|
format: Format
property
__post_init__()
defaults()
model_navigator.api.config.TorchTensorRTConfig
dataclass
Bases: CustomConfigForFormat
Torch custom config used for TensorRT TorchScript conversion.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
precision |
Union[Union[str, TensorRTPrecision], Tuple[Union[str, TensorRTPrecision], ...]]
|
TensorRT precision. |
DEFAULT_TENSORRT_PRECISION
|
max_workspace_size |
Optional[int]
|
Max workspace size used by converter. |
DEFAULT_MAX_WORKSPACE_SIZE
|
trt_profile |
Optional[TensorRTProfile]
|
TensorRT profile. |
None
|
format: Format
property
__post_init__()
Parse dataclass enums.
Source code in model_navigator/api/config.py
defaults()
Update parameters to defaults.
Source code in model_navigator/api/config.py
from_dict(config_dict)
classmethod
Instantiate TorchTensorRTConfig from adictionary.
Source code in model_navigator/api/config.py
model_navigator.api.torch
Torch optimize API.
optimize(model, dataloader, sample_count=DEFAULT_SAMPLE_COUNT, batching=True, input_names=None, output_names=None, target_formats=None, runners=None, profiler_config=None, workspace=None, verbose=False, debug=False, verify_func=None, custom_configs=None)
Function exports PyTorch model to all supported formats.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
torch.nn.Module
|
PyTorch model object |
required |
dataloader |
SizedDataLoader
|
Sized iterable with data that will be feed to the model |
required |
sample_count |
Optional[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
|
input_names |
Optional[Tuple[str, ...]]
|
Model input names |
None
|
output_names |
Optional[Tuple[str, ...]]
|
Model output names |
None
|
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 |
Optional[bool]
|
Enable verbose logging |
False
|
debug |
Optional[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/torch.py
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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
|