def outputs()

in src/exporters/coreml/config.py [0:0]


    def outputs(self) -> "OrderedDict[str, OutputDescription]":
        """
        Ordered mapping of the outputs from the original model to the exported Core ML model.
        """
        common_outputs = self._output_descriptions

        if self.use_past:
            self.fill_outputs_with_past_key_values_(common_outputs)

        return common_outputs