Skip to content

Commit

Permalink
test local added to travis
Browse files Browse the repository at this point in the history
  • Loading branch information
astorfi committed Mar 3, 2018
1 parent b8b90b1 commit 6d2b892
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/epilogue/test.rst
Expand Up @@ -23,7 +23,7 @@ The test example can be seen in ``test/test_package.py`` as below:
signal_preemphasized = speechpy.processing.preemphasis(signal, cof=0.98)
# Example of staching frames
frames = speechpy.processing.stack_frames(signal, sampling_frequency=fs, frame_length=0.020, frame_stride=0.01, Filter=lambda x: np.ones((x,)),
frames = speechpy.processing.stack_frames(signal, sampling_frequency=fs, frame_length=0.020, frame_stride=0.01, filter=lambda x: np.ones((x,)),
zero_padding=True)
# Example of extracting power spectrum
Expand Down Expand Up @@ -77,7 +77,7 @@ The local test example can be found in ``test/test_package.py`` as follows:
signal_preemphasized = speechpy.processing.preemphasis(signal, cof=0.98)
# Example of staching frames
frames = speechpy.processing.stack_frames(signal, sampling_frequency=fs, frame_length=0.020, frame_stride=0.01, Filter=lambda x: np.ones((x,)),
frames = speechpy.processing.stack_frames(signal, sampling_frequency=fs, frame_length=0.020, frame_stride=0.01, filter=lambda x: np.ones((x,)),
zero_padding=True)
# Example of extracting power spectrum
Expand Down

0 comments on commit 6d2b892

Please sign in to comment.