Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion examples/mxnet/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,22 @@
## Example Notebooks
# Examples
## Example notebooks
Please refer to the example notebooks in [Amazon SageMaker Examples repository](https://github.com/awslabs/amazon-sagemaker-examples/tree/master/sagemaker-debugger)

## Example scripts
The above notebooks come with example scripts which can be used through SageMaker. Some more example scripts are here in [scripts/](scripts/)

## Example configurations for saving tensors through [SageMaker Python SDK](https://github.com/aws/sagemaker-python-sdk)
Example configurations for saving tensors through the hook are available at [docs/sagemaker.md](../docs/sagemaker.md)

## Example configurations for running rules through [SageMaker Python SDK](https://github.com/aws/sagemaker-python-sdk)
Example configurations for saving tensors through the hook are available at [docs/sagemaker.md](../docs/sagemaker.md)

## Example for running rule locally

```
from smdebug.rules import invoke_rule
from smdebug.trials import create_trial
trial = create_trial('s3://bucket/prefix')
rule_obj = CustomRule(trial, param=value)
invoke_rule(rule_obj, start_step=0, end_step=10)
```
310 changes: 0 additions & 310 deletions examples/mxnet/notebooks/mxnet-tensor-plot.ipynb

This file was deleted.

Loading