Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for canonicalized_input_signature (0.31 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function_revival_state.h

      const SavedConcreteFunction* saved_concrete_func;
    
      // This field is only present on TF2 ConcreteFunctions, and is useful for
      // determining the original argument *names* of the function, (since the
      // "canonicalized_input_signature" may append extra uniquifying integers).
      // However, SavedBareConcreteFunctions do not have a FunctionSpec.
      // Note(bmzhao): if function_spec_.has_value(), *function_spec_ is guaranteed
      // to be non-null.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/object_graph_traversal_test.cc

            }
          }
          input_signature {
            tuple_value {
            }
          }
        }
      }
    }
    concrete_functions {
      key: "__inference_my_func_5"
      value {
        canonicalized_input_signature {
          tuple_value {
            values {
              tuple_value {
              }
            }
            values {
              dict_value {
              }
            }
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 20:15:34 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/runtime/runtime.cc

                concrete_functions.at(fn_name);
            TaggedValue input_signature = TaggedValue::Tuple();
            const RepeatedPtrField<StructuredValue>& args =
                saved_concrete_function.canonicalized_input_signature()
                    .tuple_value()
                    .values(0)
                    .tuple_value()
                    .values();
            for (const StructuredValue& arg : args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top