Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ShardingCallbackDescription (0.36 sec)

  1. tensorflow/cc/saved_model/metrics_test.cc

      EXPECT_EQ(NumCheckpointShardsWritten().value(), 10);
    }
    
    TEST(MetricsTest, TestShardingCallbackDescription) {
      EXPECT_EQ(ShardingCallbackDescription().value(), "");
      ShardingCallbackDescription().Set("foo");
      EXPECT_EQ(ShardingCallbackDescription().value(), "foo");
    }
    
    }  // namespace metrics
    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

    // Returns "/tensorflow/core/checkpoint/sharding/callback_description" cell
    // which describes the callback used to shard the checkpoint during saving.
    monitoring::GaugeCell<std::string>& ShardingCallbackDescription();
    
    }  // namespace metrics
    }  // namespace tensorflow
    
    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

      return *sharding_callback_duration->GetCell();
    }
    
    monitoring::CounterCell& NumCheckpointShardsWritten() {
      return *num_checkpoint_shards_written->GetCell();
    }
    
    monitoring::GaugeCell<std::string>& ShardingCallbackDescription() {
      return *sharding_callback_description->GetCell();
    }
    
    }  // namespace metrics
    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