Interface AIBenchmarkOutputConfig.Builder

  • Method Details

    • s3OutputLocation

      AIBenchmarkOutputConfig.Builder s3OutputLocation(String s3OutputLocation)

      The Amazon S3 URI where benchmark results are stored.

      Parameters:
      s3OutputLocation - The Amazon S3 URI where benchmark results are stored.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • mlflowConfig

      AIBenchmarkOutputConfig.Builder mlflowConfig(AIMlflowConfig mlflowConfig)

      The MLflow tracking configuration for the job. If you don't specify this parameter, MLflow tracking is disabled.

      Parameters:
      mlflowConfig - The MLflow tracking configuration for the job. If you don't specify this parameter, MLflow tracking is disabled.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • mlflowConfig

      default AIBenchmarkOutputConfig.Builder mlflowConfig(Consumer<AIMlflowConfig.Builder> mlflowConfig)

      The MLflow tracking configuration for the job. If you don't specify this parameter, MLflow tracking is disabled.

      This is a convenience method that creates an instance of the AIMlflowConfig.Builder avoiding the need to create one manually via AIMlflowConfig.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to mlflowConfig(AIMlflowConfig).

      Parameters:
      mlflowConfig - a consumer that will call methods on AIMlflowConfig.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: