Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for StaticHashTableModule (0.22 sec)

  1. tensorflow/cc/saved_model/testdata/generate_saved_models.py

      return sess
    
    
    MODULE_CTORS = {
        "VarsAndArithmeticObjectGraph": (VarsAndArithmeticObjectGraph, 2),
        "CyclicModule": (CyclicModule, 2),
        "AssetModule": (AssetModule, 2),
        "StaticHashTableModule": (StaticHashTableModule, 2),
        "SimpleV1Model": (get_simple_session, 1),
    }
    
    
    def main(args):
      if len(args) != 3:
        print("Expected: {export_path} {ModuleName}")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 18:06:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/BUILD

            "testdata/half_plus_two/**",
            "testdata/half_plus_two_v2/**",
            "testdata/x_plus_y_v2_debuginfo/**",
            "testdata/CyclicModule/**",
            "testdata/StaticHashTableModule/**",
            "testdata/VarsAndArithmeticObjectGraph/**",
            "testdata/fuzz_generated/**",
            "testdata/SimpleV1Model/**",
            "testdata/OptimizerSlotVariableModule/**",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      TFE_Context* ctx = TFE_NewContext(opts, status);
      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_DeleteContextOptions(opts);
    
      std::string model_dir = SavedModelPath("StaticHashTableModule");
    
      TF_SavedModel* saved_model =
          TF_LoadSavedModel(model_dir.c_str(), ctx, status);
    
      EXPECT_EQ(TF_GetCode(status), TF_OK) << TF_Message(status);
      TF_ConcreteFunction* lookup_fn =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top