Skip to content

Commit

Permalink
Merge branch 'liqun/Py2FixTupleUnpacking'
Browse files Browse the repository at this point in the history
  • Loading branch information
liqunfu committed Aug 16, 2018
2 parents c8cecaa + bff3002 commit bf2b5ea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bindings/python/cntk/tests/onnx_op_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1356,8 +1356,9 @@ def test_Slice(tmpdir, dtype):
def test_SequenceSlice(tmpdir, dtype, beginIndex, endIndex):
batch_size = 1
sequence_length = 5
feature_shape = (3,)
shape = (batch_size, sequence_length, *feature_shape)
input_size = 3
feature_shape = (input_size,)
shape = (batch_size, sequence_length, input_size)
data = np.reshape(range(0, np.prod(shape)), shape).astype(dtype)
testName = "test_sequence_slice_{0}.{1}".format(beginIndex, endIndex)
print(testName)
Expand Down

0 comments on commit bf2b5ea

Please sign in to comment.