Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for META (0.2 sec)

  1. tensorflow/c/c_api_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_TF_META("v", 0, TF_ATTR_INT, -1);
    }
    
    TEST_F(CApiAttributesTest, Names) {
      auto desc = init("string");
      TF_SetAttrString(desc, "v", "bunny", 5);
    
      auto oper = TF_FinishOperation(desc, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_TF_META("v", -1, TF_ATTR_STRING, 5);
    
      ASSERT_EQ(1, TF_OperationGetNumAttrs(oper));
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. configure.py

      # Now grab the NDK API level to use. Note that this is different from the
      # SDK API level, as the NDK API level is effectively the *min* target SDK
      # version.
      meta = open(os.path.join(android_ndk_home_path, 'meta/platforms.json'))
      platforms = json.load(meta)
      meta.close()
      aliases = platforms['aliases']
      api_levels = sorted(list(set([aliases[i] for i in aliases])))
    
      android_ndk_api_level = prompt_loop_or_load_from_env(
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

      TF_ImportGraphDefResults results;
      GraphImportGraphDefLocked(graph, bundle.meta_graph_def.graph_def(),
                                import_opts, &results, status);
      TF_DeleteImportGraphDefOptions(import_opts);
      if (!status->status.ok()) return nullptr;
    
      if (meta_graph_def != nullptr) {
        status->status = MessageToBuffer(bundle.meta_graph_def, meta_graph_def);
        if (!status->status.ok()) return nullptr;
      }
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/BUILD

            "//tensorflow/core/grappler/costs:graph_memory",
            "//tensorflow/core/grappler/graph_analyzer:graph_analyzer_tool",
            "//tensorflow/core/grappler/optimizers:meta_optimizer",
            "//tensorflow/core/grappler:grappler_item",
            "//tensorflow/core/grappler:grappler_item_builder",
            "//tensorflow/core/kernels:data_service_ops",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  5. RELEASE.md

            Before
        *   Fix correctness bug in CPU and GPU implementations of Adadelta.
        *   Fix a bug in `import_meta_graph`'s handling of partitioned variables
            when importing into a scope. WARNING: This may break loading checkpoints
            of graphs with partitioned variables saved after using
            `import_meta_graph` with a non-empty `import_scope` argument.
        *   Fix bug in offline debugger which prevented viewing events.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  6. tensorflow/c/c_api.h

    // If successful, populates `graph` with the contents of the Graph and
    // `meta_graph_def` with the MetaGraphDef of the loaded model.
    TF_CAPI_EXPORT extern TF_Session* TF_LoadSessionFromSavedModel(
        const TF_SessionOptions* session_options, const TF_Buffer* run_options,
        const char* export_dir, const char* const* tags, int tags_len,
        TF_Graph* graph, TF_Buffer* meta_graph_def, TF_Status* status);
    
    // Close a session.
    //
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top