Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ThreeArgInputSignature (0.94 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

    TEST_F(SavedConcreteFunctionLoadingTest, TooManyInputsInSavedConcreteFunction) {
      // `saved` has 3 inputs
      SavedConcreteFunction saved;
      *saved.mutable_canonicalized_input_signature() =
          testing::ThreeArgInputSignature();
      *saved.mutable_output_signature() = testing::ZeroReturnOutputSignature();
    
      // `func` has 2 inputs
      FunctionDef func = FuncDefWithNumInputsOutputs(2, 0);
    
      std::unique_ptr<TFConcreteFunction> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/tf_concrete_function_test_protos.h

    // tf.function with 1 input
    StructuredValue SingleArgInputSignature();
    
    // Returns a StructuredValue corresponding to the serialized InputSignature of a
    // tf.function with 3 inputs
    StructuredValue ThreeArgInputSignature();
    
    // Returns a StructuredValue corresponding to the serialized OutputSignature of
    // a tf.function with no return values
    StructuredValue ZeroReturnOutputSignature();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top