Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SingleReturnOutputSignature (0.33 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_concrete_function_test_protos.h

    StructuredValue ZeroReturnOutputSignature();
    
    // Returns a StructuredValue corresponding to the serialized OutputSignature of
    // a tf.function with a single tensor output
    StructuredValue SingleReturnOutputSignature();
    
    // Returns a StructuredValue corresponding to the serialized OutputSignature of
    // a tf.function with three tensor outputs
    StructuredValue ThreeReturnOutputSignature();
    
    }  // namespace testing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

      // `saved` has 0 inputs, 1 output
      SavedConcreteFunction saved;
      *saved.mutable_canonicalized_input_signature() =
          testing::ZeroArgInputSignature();
      *saved.mutable_output_signature() = testing::SingleReturnOutputSignature();
    
      // `func` has 0 inputs, 2 outputs
      FunctionDef func = FuncDefWithNumInputsOutputs(0, 2);
    
      std::unique_ptr<TFConcreteFunction> result;
      Status status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top