Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for signatureKey (0.33 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def.mlir

    // CHECK-NEXT:      tensor_index: 5
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      name: "start_logits",
    // CHECK-NEXT:      tensor_index: 6
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    signature_key: "serving_default"
    // CHECK-NEXT:  } ]
    // CHECK-NEXT:}
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 554 : i32}, tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_output_override.mlir

    // CHECK-NEXT:      name: "end_logits",
    // CHECK-NEXT:      tensor_index: 4
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      name: "start_logits",
    // CHECK-NEXT:      tensor_index: 4
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    signature_key: "serving_default"
    // CHECK-NEXT:  } ]
    // CHECK-NEXT:}
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 554 : i32}, tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/fingerprinting_utils.h

        const std::vector<::tensorflow::proto_splitter::ChunkInfo>& chunks_info);
    
    // Hashes the contents of `signature_def`.
    absl::StatusOr<uint64_t> HashSignatureDef(
        const Map<std::string, ::tensorflow::SignatureDef>& signature_def_map,
        const ::tensorflow::proto_splitter::ChunkedMessage& chunked_message,
        riegeli::RecordReader<riegeli::FdReader<>>& reader,
        const std::vector<::tensorflow::proto_splitter::ChunkInfo>& chunks_info);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/util_test.cc

        for (const auto& input : inputs) {
          TensorProto tensor_proto;
          input.second.AsProtoTensorContent(&tensor_proto);
          protos.push_back({input.first, std::move(tensor_proto)});
        }
      }
    
      SignatureDef sig_;
      google::protobuf::Map<std::string, TensorProto> request_;
      std::map<std::string, TensorProto> unaliased_request_;
      TensorProto input_x_, input_y_, default_x_, default_y_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Builds and returns list of tfl.SignatureDef sections in the model.
      std::optional<VectorBufferOffset<BufferOffset<tflite::SignatureDef>>>
      CreateSignatureDefs(const std::vector<SignatureDefData>& signature_defs);
    
      // Returns list of offsets for the passed 'items' in TensorMap structure
      // inside the flatbuffer.
      // 'items' is a map from tensor name in signatureDef to tensor name in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

            func_revival_state.node_id = i;
            func_revival_state.fdef = function_def;
            func_revival_state.saved_concrete_func = &saved_concrete_func;
            func_revival_state.signature_key = reverse_signature_iter->second;
            objects->signature_def_functions[i] = std::move(func_revival_state);
          } else {
            TFConcreteFunctionRevivalState func_revival_state;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        fbb_.AddOffset(SignatureDef::VT_INPUTS, inputs);
      }
      void add_outputs(::flatbuffers::Offset<::flatbuffers::Vector<::flatbuffers::Offset<tflite::TensorMap>>> outputs) {
        fbb_.AddOffset(SignatureDef::VT_OUTPUTS, outputs);
      }
      void add_signature_key(::flatbuffers::Offset<::flatbuffers::String> signature_key) {
        fbb_.AddOffset(SignatureDef::VT_SIGNATURE_KEY, signature_key);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  8. tensorflow/cc/tools/freeze_saved_model.cc

        const SavedModelBundle& saved_model_bundle,
        std::unordered_set<string>* inputs, std::unordered_set<string>* outputs) {
      for (auto& sigdef_elem : saved_model_bundle.meta_graph_def.signature_def()) {
        const SignatureDef& signature_def = sigdef_elem.second;
        for (auto& input_elem : signature_def.inputs()) {
          GetTensorNamesFromTensorInfo(input_elem.second, inputs);
        }
        for (auto& output_elem : signature_def.outputs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      // (TF1 SavedModel only) Collection of tags identifying the MetaGraphDef
      // within the SavedModel to analyze. If not specified, ["serve"] is used.
      repeated string tags = 5;
    
      // Sequence of keys identifying SignatureDef containing inputs and outputs.
      // If not specified, ["serving_default"] is used.
      repeated string signature_keys = 6;
    
      // A map from signature keys to the corresponding representative dataset.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

        const std::vector<std::string> &signature_keys,
        const std::unordered_set<std::string> &tags,
        const QuantizationOptions &quantization_options,
        const absl::flat_hash_map<std::string, SignatureDef> &signature_def_map,
        const PyFunctionLibrary &py_function_library,
        const absl::flat_hash_map<std::string, RepresentativeDatasetFile>
            &representative_dataset_file_map_serialized) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top