Source code for mridc.core.classes.export

# encoding: utf-8
__author__ = "Dimitrios Karkalousos"

# Taken and adapted from: https://github.com/NVIDIA/NeMo/blob/main/nemo/core/classes/exportable.py

from abc import ABC
from os.path import exists
from typing import List, Union

import torch
from torch.onnx import TrainingMode

from mridc.core.classes.common import typecheck
from mridc.core.utils.neural_type_utils import get_dynamic_axes, get_io_names
from mridc.utils import logging
from mridc.utils.export_utils import (
    ExportFormat,
    augment_filename,
    get_export_format,
    parse_input_example,
    replace_for_export,
    verify_runtime,
    wrap_forward_method,
)

__all__ = ["ExportFormat", "Exportable"]


[docs]class Exportable(ABC): """ This Interface should be implemented by particular classes derived from mridc.core.NeuralModule or mridc.core.ModelPT. It gives these entities ability to be exported for deployment to formats such as ONNX. """ @property def input_module(self): return self @property def output_module(self): return self
[docs] def export( self, output: str, input_example=None, verbose=False, do_constant_folding=True, onnx_opset_version=None, training=TrainingMode.EVAL, check_trace: Union[bool, List[torch.Tensor]] = False, dynamic_axes=None, check_tolerance=0.01, export_modules_as_functions: bool = False, ): """ Export the module to a file. Parameters ---------- output: The output file path. input_example: A dictionary of input names and values. verbose: If True, print out the export process. do_constant_folding: If True, do constant folding. onnx_opset_version: The ONNX opset version to use. training: Training mode for the export. check_trace: If True, check the trace of the exported model. dynamic_axes: A dictionary of input names and dynamic axes. check_tolerance: The tolerance for the check_trace. export_modules_as_functions: If True, export modules as functions. """ all_out = [] all_descr = [] for subnet_name in self.list_export_subnets(): model = self.get_export_subnet(subnet_name) out_name = augment_filename(output, subnet_name) out, descr, out_example = model._export( out_name, input_example=input_example, verbose=verbose, do_constant_folding=do_constant_folding, onnx_opset_version=onnx_opset_version, training=training, check_trace=check_trace, dynamic_axes=dynamic_axes, check_tolerance=check_tolerance, export_modules_as_functions=export_modules_as_functions, ) # Propagate input example (default scenario, may need to be overriden) if input_example is not None: input_example = out_example all_out.append(out) all_descr.append(descr) logging.info(f"Successfully exported {model.__class__.__name__} to {out_name}") return (all_out, all_descr)
def _export( self, output: str, input_example=None, verbose=False, do_constant_folding=True, onnx_opset_version=None, training=TrainingMode.EVAL, check_trace: bool = False, dynamic_axes=None, check_tolerance=0.01, export_modules_as_functions: bool = False, ): """ Helper to export the module to a file. Parameters ---------- output: The output file path. input_example: A dictionary of input names and values. verbose: If True, print out the export process. do_constant_folding: If True, do constant folding. onnx_opset_version: The ONNX opset version to use. training: Training mode for the export. check_trace: If True, check the trace of the exported model. dynamic_axes: A dictionary of input names and dynamic axes. check_tolerance: The tolerance for the check_trace. export_modules_as_functions: If True, export modules as functions. """ my_args = locals().copy() my_args.pop("self") exportables = [m for m in self.modules() if isinstance(m, Exportable)] # type: ignore qual_name = f"{self.__module__}.{self.__class__.__qualname__}" format = get_export_format(output) output_descr = f"{qual_name} exported to {format}" # Pytorch's default for None is too low, can't pass None through if onnx_opset_version is None: onnx_opset_version = 13 try: # Disable typechecks typecheck.set_typecheck_enabled(enabled=False) # Allow user to completely override forward method to export forward_method, old_forward_method = wrap_forward_method(self) # Set module mode with torch.onnx.select_model_mode_for_export( self, training ), torch.inference_mode(), torch.jit.optimized_execution(True): if input_example is None: input_example = self.input_module.input_example() # Remove i/o examples from args we propagate to enclosed Exportables my_args.pop("output") my_args.pop("input_example") # Run (possibly overridden) prepare methods before calling forward() for ex in exportables: ex._prepare_for_export(**my_args, noreplace=True) self._prepare_for_export(output=output, input_example=input_example, **my_args) input_list, input_dict = parse_input_example(input_example) input_names = self.input_names output_names = self.output_names output_example = tuple(self.forward(*input_list, **input_dict)) # type: ignore if format == ExportFormat.TORCHSCRIPT: jitted_model = torch.jit.trace_module( self, {"forward": tuple(input_list) + tuple(input_dict.values())}, strict=True, check_trace=check_trace, check_tolerance=check_tolerance, ) if not self.training: # type: ignore jitted_model = torch.jit.optimize_for_inference(torch.jit.freeze(jitted_model)) if verbose: logging.info(f"JIT code:\n{jitted_model.code}") jitted_model.save(output) assert exists(output) elif format == ExportFormat.ONNX: # dynamic axis is a mapping from input/output_name => list of "dynamic" indices if dynamic_axes is None: dynamic_axes = get_dynamic_axes(self.input_module.input_types, input_names) dynamic_axes.update(get_dynamic_axes(self.output_module.output_types, output_names)) torch.onnx.export( self, input_example, output, input_names=input_names, output_names=output_names, verbose=verbose, do_constant_folding=do_constant_folding, dynamic_axes=dynamic_axes, opset_version=onnx_opset_version, export_modules_as_functions=export_modules_as_functions, ) if check_trace: check_trace_input = [input_example] if isinstance(check_trace, bool) else check_trace verify_runtime(self, output, check_trace_input, input_names) else: raise ValueError(f"Encountered unknown export format {format}.") finally: typecheck.set_typecheck_enabled(enabled=True) if forward_method: type(self).forward = old_forward_method # type: ignore self._export_teardown() return (output, output_descr, output_example) @property def disabled_deployment_input_names(self): """Implement this method to return a set of input names disabled for export""" return set() @property def disabled_deployment_output_names(self): """Implement this method to return a set of output names disabled for export""" return set() @property def supported_export_formats(self): """Implement this method to return a set of export formats supported. Default is all types.""" return {ExportFormat.ONNX, ExportFormat.TORCHSCRIPT} def _prepare_for_export(self, **kwargs): """ Override this method to prepare module for export. This is in-place operation. Base version does common necessary module replacements (Apex etc) """ if "noreplace" not in kwargs: replace_for_export(self) def _export_teardown(self): """ Override this method for any teardown code after export. """ @property def input_names(self): """Implement this method to return a list of input names""" return get_io_names(self.input_module.input_types, self.disabled_deployment_input_names) @property def output_names(self): """Override this method to return a set of output names disabled for export""" return get_io_names(self.output_module.output_types, self.disabled_deployment_output_names)
[docs] def get_export_subnet(self, subnet=None): """Returns Exportable subnet model/module to export""" return self if subnet is None or subnet == "self" else getattr(self, subnet)
[docs] def list_export_subnets(self): """ Returns default set of subnet names exported for this model. First goes the one receiving input (input_example). """ return ["self"]