Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for meta_graphs (0.26 sec)

  1. tensorflow/c/c_api_test.cc

      metagraph_def.ParseFromArray(metagraph->data, metagraph->length);
      TF_DeleteBuffer(metagraph);
    
      EXPECT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      CSession csession(session);
    
      // Retrieve the regression signature from meta graph def.
      const auto signature_def_map = metagraph_def.signature_def();
      const auto signature_def = signature_def_map.at("regress_x_to_y");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

    #include "tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saver.pb.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace quantization {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/framework/op_def_builder.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/public/session.h"
    #include "tensorflow/lite/c/c_api_types.h"
    #include "tensorflow/lite/experimental/remat/metadata_util.h"
    #include "tensorflow/lite/python/metrics/converter_error_data.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      TFE_DeleteContext(ctx);
    }
    
    // This tests running the "serving_default" SignatureDefFunction from the
    // VarsAndArithmeticObjectGraph savedmodel. Here's what the signature_defs
    // protobuf in the metagraph looks like:
    // signature_def: {
    //   key  : "serving_default"
    //   value: {
    //     inputs: {
    //       key  : "a"
    //       value: {
    //         name : "serving_default_a:0"
    //         dtype: DT_FLOAT
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    saved_model_schema_version: 1
    meta_graphs {
      meta_info_def {
        stripped_op_list {
          op {
            name: "Const"
            output_arg {
              name: "output"
              type_attr: "dtype"
            }
            attr {
              name: "value"
              type: "tensor"
            }
            attr {
              name: "dtype"
              type: "type"
            }
          }
          op {
            name: "Identity"
            input_arg {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      def _run_model_in_sess(self, model_dir, tags, signature_key, sample_inputs):
        with tensorflow.compat.v1.Session(graph=tensorflow.Graph()) as sess:
          meta_graph = saved_model_loader.load(sess, tags, export_dir=model_dir)
          signature_def = meta_graph.signature_def[signature_key]
    
          # DumpTensorOp only works in graph mode.
          # Execute the model using session to run DumpTensorOp.
          output_tensor_names = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/platform/threadpool.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    #include "tensorflow/core/protobuf/saver.pb.h"
    #include "tensorflow/core/protobuf/struct.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. RELEASE.md

        *   TFRecordWriter now raises an error if .write() fails.
        *   TPU: More helpful error messages in TPUClusterResolvers.
        *   The legacy_init_op argument to SavedModelBuilder methods for adding
            MetaGraphs has been deprecated. Please use the equivalent main_op
            argument instead. As part of this, we now explicitly check for a single
            main_op or legacy_init_op at the time of SavedModel building, whereas
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top