Skip to content

Commit 6b9255b

Browse files
authored
Update README.md
1 parent 647f000 commit 6b9255b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Sagemaker Debugger
1+
# Amazon SageMaker Debugger
22

33
- [Overview](#overview)
44
- [Examples](#sagemaker-example)
55
- [How It Works](#how-it-works)
66

77
## Overview
8-
Sagemaker Debugger is an AWS service to automatically debug your machine learning training process.
8+
Amazon SageMaker Debugger is an AWS service to automatically debug your machine learning training process.
99
It helps you develop better, faster, cheaper models by catching common errors quickly. It supports
1010
TensorFlow, PyTorch, MXNet, and XGBoost on Python 3.6+.
1111

@@ -20,7 +20,7 @@ There are two ways to use it: Automatic mode and configurable mode.
2020
- Configurable mode: More powerful, lets you specify exactly which tensors and collections to save. Use the Python API within your script.
2121

2222

23-
## Example: SageMaker Zero-Code-Change
23+
## Example: Amazon SageMaker Zero-Code-Change
2424
This example uses a zero-script-change experience, where you can use your training script as-is.
2525
See the [example notebooks](https://link.com) for more details.
2626
```python
@@ -51,7 +51,7 @@ sagemaker_simple_estimator = sagemaker.tensorflow.TensorFlow(
5151
sagemaker_simple_estimator.fit()
5252
```
5353

54-
That's it! SageMaker will automatically monitor your training job for your and create a CloudWatch
54+
That's it! Amazon SageMaker will automatically monitor your training job for your and create a CloudWatch
5555
event if you run into exploding tensor values.
5656

5757
If you want greater configuration and control, we offer that too. Simply
@@ -63,7 +63,7 @@ Requires Python 3.6+, and this example uses tf.keras. Run
6363
pip install smdebug
6464
```
6565

66-
To use Sagemaker Debugger, simply add a callback hook:
66+
To use Amazon SageMaker Debugger, simply add a callback hook:
6767
```python
6868
import smdebug.tensorflow as smd
6969
hook = smd.KerasHook.(out_dir=args.out_dir)
@@ -85,13 +85,13 @@ print(f"Loss values were {trial.tensor('CrossEntropyLoss:0')}")
8585
```
8686

8787
## How It Works
88-
SageMaker Debugger uses a `hook` to store the values of tensors throughout the training process. Another process called a `rule` job
88+
Amazon SageMaker Debugger uses a `hook` to store the values of tensors throughout the training process. Another process called a `rule` job
8989
simultaneously monitors and validates these outputs to ensure that training is progressing as expected.
9090
A rule might check for vanishing gradients, or exploding tensor values, or poor weight initialization.
9191
If a rule is triggered, it will raise a CloudWatch event and stop the training job, saving you time
9292
and money.
9393

94-
SageMaker Debugger can be used inside or outside of SageMaker. There are three main use cases:
94+
Amazon SageMaker Debugger can be used inside or outside of SageMaker. There are three main use cases:
9595
- SageMaker Zero-Script-Change: Here you specify which rules to use when setting up the estimator and run your existing script, no changes needed. See the first example above.
9696
- SageMaker Bring-Your-Own-Container: Here you specify the rules to use, and modify your training script.
9797
- Non-SageMaker: Here you write custom rules (or manually analyze the tensors) and modify your training script. See the second example above.

0 commit comments

Comments
 (0)