Skip to content

Commit

Permalink
Fixed grammar and typesetting issues in the module summary docstring.
Browse files Browse the repository at this point in the history
  • Loading branch information
tangyuq committed Jun 7, 2017
1 parent ef3831a commit 4a2209b
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions bindings/python/cntk/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# for full license information.
# ==============================================================================
"""
Core numerical constructs:
Core numerical constructs.
* :class:`NDArrayView <NDArrayView>`
* :class:`Value <Value>`
* :class:`NDArrayView`
* :class:`Value`
"""


Expand Down
5 changes: 4 additions & 1 deletion bindings/python/cntk/default_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
# ==============================================================================

'''
Default options of CNTK functions. Usage:
Default options of CNTK functions.
Usage:
* ``with default_options():``, and
* ``with default_options_for():``
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/cntk/learners/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# ==============================================================================

'''
Learner tunes a set of parameters during the training process. One can use
A learner tunes a set of parameters during the training process. One can use
different learners for different sets of parameters. Currently, CNTK supports
the following learning algorithms:
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/cntk/ops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# for full license information.
# ==============================================================================
"""
CNTK core operators. Calling these operators creates nodes in CNTK computational graph.
CNTK core operators. Calling these operators creates nodes in the CNTK computational graph.
"""


Expand Down
2 changes: 1 addition & 1 deletion bindings/python/cntk/ops/functions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
CNTK function constructs. This is the core abstraction of all primitive operators in CNTK computational graph.
CNTK function constructs. This is the core abstraction of all primitive operators in the CNTK computational graph.
"""


Expand Down
2 changes: 1 addition & 1 deletion bindings/python/cntk/ops/sequence/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# for full license information.
# ==============================================================================
"""
CNTK operators that are specialized in sequences. Calling these operators creates nodes in CNTK computational graph.
CNTK operators that are specialized in sequences. Calling these operators creates nodes in the CNTK computational graph.
"""
import numpy as np
from cntk.internal import typemap, sanitize_input
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/cntk/sample_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# for full license information.
# ==============================================================================
"""
Utilities for fetching CNTK sample data.
Utilities for fetching CNTK samples data.
"""


Expand Down

0 comments on commit 4a2209b

Please sign in to comment.