SagemakerExperimentsLogger provides a simple way to log experimental data such as hyperparameter settings and evaluation metrics via AWS SageMaker Experiments API. It can be easily integration into the concept of Pytorch Lightning Trainer class.
For detailed documentation, including the API reference, see Read the Docs
You can install the latest (nightly) version with pip using ssh with
pip install sagemaker-experiments-logger
The SageMaker Experiments logger can be easily applied by setup an own run context:
from pytorch_lightning import Trainer
from sagemaker.experiments.run import Run
from experiments_addon.logger import SagemakerExperimentsLogger
with Run(experiment_name="testExperiment", run_name="testRun1"):
logger = SagemakerExperimentsLogger()
trainer = Trainer(
logger=logger,
...
)
...
or by using an existing run context. For example in a SageMaker Training Step
from pytorch_lightning import Trainer
from experiments_addon.logger import SagemakerExperimentsLogger
logger = SagemakerExperimentsLogger(experiment_name="TestExp", run_name="TestRun")
trainer = Trainer(
logger=logger,
...
)
...
Try Tutorial Notebook to learn more about the usage of the SagemakerExperimentsLogger class.
It is also worth to read the blog post: Experiment Tracking With AWS SageMaker and PyTorch Lightning
I welcome all contributions!
To file a bug or request a feature, please file a GitHub issue. Pull requests are welcome.
This library is licensed under the Apache 2.0 License.