Skip to content

Commit

Permalink
Integrate vadimma/updateDoc into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Project Philly committed Aug 16, 2017
2 parents 032913f + 0a9867f commit 9608e3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bindings/python/cntk/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ def HTKMLFDeserializer(label_mapping_file, streams, phoneBoundaries = False):
streams: any dictionary-like object that contains a mapping from stream
names to :class:`StreamDef` objects. Each StreamDef object configures
a label stream.
phoneBoundaries (bool): if phone boundaries should be considered (should be set to True for CTC training, False otherwise)
phoneBoundaries (`bool`, defaults to False): if phone boundaries should be considered (should be set to True for CTC training, False otherwise)
'''
if len(streams) != 1:
raise ValueError("HTKMLFDeserializer only accepts a single stream")
Expand Down
4 changes: 2 additions & 2 deletions bindings/python/cntk/ops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2109,9 +2109,9 @@ def slice(x, axis, begin_index, end_index, strides=None, name=''):
axis (int or :class:`~cntk.axis.Axis`): axis along which ``begin_index`` and ``end_index``
will be used. If it is of type int it will be used as a static axis.
begin_index (int): the index along axis where the slicing starts
end_index (int): the index along axis where the slicing ends
name (str, optional): the name of the Function instance in the network
end_index (int): the index along axis where the slicing ends (exclusive)
strides(int): step sizes when applying slice, negative value means in reverse order
name (str, optional): the name of the Function instance in the network
See also:
Indexing in NumPy: https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html
Expand Down

0 comments on commit 9608e3a

Please sign in to comment.