Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix pep8
  • Loading branch information
gabrieldemarmiesse committed Aug 31, 2018
commit 41b292c049fbb5e318248caab4e61d0c064153e3
8 changes: 4 additions & 4 deletions tests/keras/backend/backend_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1571,10 +1571,10 @@ def test_ctc_decode_beam_search(self):
top_paths = 2

decode_pred_tf, log_prob_pred_tf = K.ctc_decode(inputs,
input_length,
greedy=False,
beam_width=beam_width,
top_paths=top_paths)
input_length,
greedy=False,
beam_width=beam_width,
top_paths=top_paths)

assert len(decode_pred_tf) == top_paths

Expand Down