Skip to content

Commit 52d41cc

Browse files
author
Ignacio Quintero
committed
No comments
1 parent b3bf6e3 commit 52d41cc

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/sagemaker/chainer/README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -634,13 +634,13 @@ The Chainer Docker images have the following dependencies installed:
634634
+-----------------------------+-------------+-------------+-------------+
635635
| Dependencies | chainer 4.0 | chainer 4.1 | chainer 5.0 |
636636
+-----------------------------+-------------+-------------+-------------+
637-
| chainer | 4.0.0 | 4.1.0 | 5.0.0 |
637+
| chainer | 4.0.0 | 4.1.0 | 5.0.0 |
638638
+-----------------------------+-------------+-------------+-------------+
639639
| chainercv | 0.9.0 | 0.10.0 | 0.10.0 |
640640
+-----------------------------+-------------+-------------+-------------+
641-
| chainermn | 1.2.0 | 1.3.0 | N/A |
641+
| chainermn | 1.2.0 | 1.3.0 | N/A |
642642
+-----------------------------+-------------+-------------+-------------+
643-
| CUDA (GPU image only) | 9.0 | 9.0 | 9.0 |
643+
| CUDA (GPU image only) | 9.0 | 9.0 | 9.0 |
644644
+-----------------------------+-------------+-------------+-------------+
645645
| cupy | 4.0.0 | 4.1.0 | 5.0.0 |
646646
+-----------------------------+-------------+-------------+-------------+
@@ -659,10 +659,10 @@ The Chainer Docker images have the following dependencies installed:
659659

660660
The Docker images extend Ubuntu 16.04.
661661

662-
You must select a version of Chainer by passing a framework_version keyword arg to the Chainer Estimator constructor.
663-
Currently supported versions are listed in the above table. You can also set framework_version to only specify major and
664-
minor version, which will cause your training script to be run on the latest supported patch version of that minor
665-
version.
662+
You must select a version of Chainer by passing a ``framework_version`` keyword arg to the Chainer Estimator
663+
constructor. Currently supported versions are listed in the above table. You can also set framework_version to only
664+
specify major and minor version, which will cause your training script to be run on the latest supported patch
665+
version of that minor version.
666666

667667
Alternatively, you can build your own image by following the instructions in the SageMaker Chainer containers
668668
repository, and passing ``image_name`` to the Chainer Estimator constructor.

tests/unit/test_chainer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,4 +468,4 @@ def test_empty_framework_version(warning, sagemaker_session):
468468
framework_version=None)
469469

470470
assert estimator.framework_version == defaults.CHAINER_VERSION
471-
warning.assert_called_with(defaults.CHAINER_VERSION, defaults.CHAINER_VERSION)
471+
warning.assert_called_with(defaults.CHAINER_VERSION, Chainer.LATEST_VERSION)

0 commit comments

Comments
 (0)