pub struct Builder { /* private fields */ }
Expand description
A builder for TensorBoardOutputConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn local_path(self, input: impl Into<String>) -> Self
pub fn local_path(self, input: impl Into<String>) -> Self
Path to local storage location for tensorBoard output. Defaults to /opt/ml/output/tensorboard
.
sourcepub fn set_local_path(self, input: Option<String>) -> Self
pub fn set_local_path(self, input: Option<String>) -> Self
Path to local storage location for tensorBoard output. Defaults to /opt/ml/output/tensorboard
.
sourcepub fn s3_output_path(self, input: impl Into<String>) -> Self
pub fn s3_output_path(self, input: impl Into<String>) -> Self
Path to Amazon S3 storage location for TensorBoard output.
sourcepub fn set_s3_output_path(self, input: Option<String>) -> Self
pub fn set_s3_output_path(self, input: Option<String>) -> Self
Path to Amazon S3 storage location for TensorBoard output.
sourcepub fn build(self) -> TensorBoardOutputConfig
pub fn build(self) -> TensorBoardOutputConfig
Consumes the builder and constructs a TensorBoardOutputConfig
.