Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for kSavedModelInitOpSignatureKey (0.38 sec)

  1. tensorflow/cc/saved_model/loader_util.cc

      const auto& init_op_sig_it =
          meta_graph_def.signature_def().find(kSavedModelInitOpSignatureKey);
      if (init_op_sig_it != sig_def_map.end()) {
        const auto& sig_def_outputs = init_op_sig_it->second.outputs();
        const auto& sig_def_outputs_it =
            sig_def_outputs.find(kSavedModelInitOpSignatureKey);
        if (sig_def_outputs_it == sig_def_outputs.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/constants.h

    inline constexpr char kSavedModelVariablesFilename[] = "variables";
    
    // SavedModel SignatureDef keys for the initialization and train ops. Used in
    // V2 SavedModels.
    inline constexpr char kSavedModelInitOpSignatureKey[] = "__saved_model_init_op";
    inline constexpr char kSavedModelTrainOpSignatureKey[] =
        "__saved_model_train_op";
    
    // Key in the TensorBundle for the object graph proto.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 23:02:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.cc

          signatures.begin(), signatures.end());
    
      // Init op is only used during initialization and it's not a target for
      // quantization.
      signature_def_map.erase(kSavedModelInitOpSignatureKey);
      return signature_def_map;
    }
    
    // Retrieves the function name -> function alias mapping from the
    // `SavedModelBundle`.
    // TODO: b/314124142 - Remove the need for this function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 10:49:12 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top