Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for trackable_dict_wrapper (0.14 sec)

  1. tensorflow/cc/experimental/libtf/module.cc

      }
    
      std::string identifier = saved_object_proto.user_object().identifier();
      if (identifier == "trackable_list_wrapper") {
        tf::libtf::List user_list;
        // TODO(b/191267013): Populate with values.
        return user_list;
      }
      if (identifier == "trackable_dict_wrapper") {
        tf::libtf::Dictionary user_dict;
        // TODO(b/191267013): Populate with values.
        return user_dict;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/tests/module_test.cc

    }
    
    TEST(ModuleTest, TestBuildEmptyDict) {
      tensorflow::SavedObject saved_object_proto;
      const std::string pb_txt = R"pb(
        user_object {
          identifier: "trackable_dict_wrapper"
          version { producer: 1 min_consumer: 1 }
        }
      )pb";
    
      ASSERT_TRUE(::tensorflow::protobuf::TextFormat::ParseFromString(
          pb_txt, &saved_object_proto));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 4.6K bytes
    - Viewed (0)
Back to top