Sagemaker estimator object. Interface to sagemaker$estimator$Estimator
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | sagemaker_estimator(
container,
instance_count = 1L,
instance_type = "ml.m4.xlarge",
s3_output = s3(s3_bucket(), "models/"),
...
)
sagemaker_xgb_estimator(
instance_count = 1L,
instance_type = "ml.m4.xlarge",
s3_output = s3(s3_bucket(), "models/"),
...
)
|
container |
URI of Sagemaker model container. See sagemaker_container. |
instance_count |
The number of instances to run. |
instance_type |
Type of EC2 instance to run. See here for a list of options and pricing. |
s3_output |
The S3 output path to save the model artifact. See s3 to construct the S3 path. |
... |
Additional named arguments sent to the underlying API. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.