Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/cc/saved_model/metrics_test.cc

      EXPECT_EQ(SavedModelWriteFingerprint().value(), "bar");
    }
    
    TEST(MetricsTest, TestWritePath) {
      EXPECT_EQ(SavedModelWritePath().value(), "");
      SavedModelWritePath().Set("foo");
      EXPECT_EQ(SavedModelWritePath().value(), "foo");
      SavedModelWritePath().Set("bar");
      EXPECT_EQ(SavedModelWritePath().value(), "bar");
    }
    
    TEST(MetricsTest, TestWritePathAndSingleprint) {
    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

    monitoring::GaugeCell<std::string>& SavedModelWriteFingerprint();
    
    // Returns "/tensorflow/core/saved_model/write/path" cell, which contains
    // the saved_model_path of the SM when it is exported.
    monitoring::GaugeCell<std::string>& SavedModelWritePath();
    
    // Returns "/tensorflow/core/saved_model/write/path_and_fingerprint" cell, which
    // contains the path (saved_model_path) and fingerprint (concatenation of
    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>& SavedModelWriteFingerprint() {
      return *saved_model_write_fingerprint->GetCell();
    }
    
    monitoring::GaugeCell<std::string>& SavedModelWritePath() {
      return *saved_model_write_path->GetCell();
    }
    
    monitoring::GaugeCell<std::string>& SavedModelWritePathAndSingleprint() {
      return *saved_model_write_path_and_singleprint->GetCell();
    }
    
    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