Skip to content

Commit 509b08d

Browse files
committed
update doc with ntm algorithm
1 parent f652a92 commit 509b08d

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You can install from source by cloning this repository and issuing a pip install
3939

4040
git clone https://github.com/aws/sagemaker-python-sdk.git
4141
python setup.py sdist
42-
pip install dist/sagemaker-1.0.3.tar.gz
42+
pip install dist/sagemaker-1.0.4.tar.gz
4343

4444
Supported Python versions
4545
~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -1447,7 +1447,7 @@ Amazon SageMaker provides several built-in machine learning algorithms that you
14471447
14481448
The full list of algorithms is available on the AWS website: https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html
14491449
1450-
SageMaker Python SDK includes Estimator wrappers for the AWS K-means, Principal Components Analysis, Linear Learner, Factorization Machines and LDA algorithms.
1450+
SageMaker Python SDK includes Estimator wrappers for the AWS K-means, Principal Components Analysis(PCA), Linear Learner, Factorization Machines, Latent Dirichlet Allocation(LDA) and Neural Topic Model(NTM) algorithms.
14511451
14521452
Definition and usage
14531453
~~~~~~~~~~~~~~~~~~~~

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __getattr__(cls, name):
1818
'tensorflow.python.framework', 'tensorflow_serving', 'tensorflow_serving.apis']
1919
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
2020

21-
version = '1.0.3'
21+
version = '1.0.4'
2222
project = u'sagemaker'
2323

2424
# Add any Sphinx extension module names here, as strings. They can be extensions

doc/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,4 @@ Amazon provides implementations of some common machine learning algortithms opti
4949
sagemaker.amazon.amazon_estimator
5050
factorization_machines
5151
lda
52+
ntm

doc/ntm.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
NTM
2+
--------------------
3+
4+
The Amazon SageMaker NTM algorithm.
5+
6+
.. autoclass:: sagemaker.NTM
7+
:members:
8+
:undoc-members:
9+
:show-inheritance:
10+
:inherited-members:
11+
:exclude-members: image, num_topics, encoder_layers, epochs, encoder_layers_activation, optimizer, tolerance,
12+
num_patience_epochs, batch_norm, rescale_gradient, clip_gradient, weight_decay, learning_rate
13+
14+
15+
.. autoclass:: sagemaker.NTMModel
16+
:members:
17+
:undoc-members:
18+
:show-inheritance:
19+
20+
.. autoclass:: sagemaker.NTMPredictor
21+
:members:
22+
:undoc-members:
23+
:show-inheritance:

0 commit comments

Comments
 (0)