Home | History | Annotate | Download | only in export

Lines Matching defs:outputs

45     The SignatureDef will specify outputs as described in this ExportOutput,
166 Named outputs must be provided as a dict from string to `Tensor`,
169 def __init__(self, outputs):
173 outputs: A `Tensor` or a dict of string to `Tensor` representing the
177 ValueError: if the outputs is not dict, or any of its keys are not
180 if not isinstance(outputs, dict):
181 outputs = {_SINGLE_OUTPUT_DEFAULT_NAME: outputs}
182 for key, value in outputs.items():
189 self._outputs = outputs
192 def outputs(self):
197 self.outputs)