Skip to content
This repository was archived by the owner on Aug 15, 2019. It is now read-only.

Commit 93ca416

Browse files
committed
Fix test failure
1 parent 421a7e7 commit 93ca416

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ops/signal_ops.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function frame_(
102102
*
103103
* ```js
104104
* const input = tf.tensor1d([1, 1, 1, 1, 1])
105-
* tf.signal.stft(input, 3, 1).print();
105+
* tf.signal.stft(input, 3, 1).forEach(t => t.print());
106106
* ```
107107
* @param signal 1-dimensional real value tensor.
108108
* @param frameLength The window length of samples.

0 commit comments

Comments
 (0)