Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SavedModelWritePathAndSingleprint (0.54 sec)

  1. tensorflow/cc/saved_model/metrics_test.cc

    }
    
    TEST(MetricsTest, TestWritePathAndSingleprint) {
      EXPECT_EQ(SavedModelWritePathAndSingleprint().value(), "");
      SavedModelWritePathAndSingleprint().Set("foo");
      EXPECT_EQ(SavedModelWritePathAndSingleprint().value(), "foo");
      SavedModelWritePathAndSingleprint().Set("bar");
      EXPECT_EQ(SavedModelWritePathAndSingleprint().value(), "bar");
    
      EXPECT_EQ(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/metrics.h

    // graph_def_program_hash, signature_def_hash, saved_object_graph_hash,
    // and checkpoint_hash) of the SavedModel when it is exported.
    monitoring::GaugeCell<std::string>& SavedModelWritePathAndSingleprint();
    
    // Returns "/tensorflow/core/saved_model/read/fingerprint" cell, wich contains
    // the saved_model_checksum of the SM's fingerprint when it is imported.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/metrics.cc

    }
    
    monitoring::GaugeCell<std::string>& SavedModelWritePath() {
      return *saved_model_write_path->GetCell();
    }
    
    monitoring::GaugeCell<std::string>& SavedModelWritePathAndSingleprint() {
      return *saved_model_write_path_and_singleprint->GetCell();
    }
    
    std::string MakeFingerprintJson(FingerprintDef fingerprint_def) {
      Json::Value fingerprint = Json::objectValue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top