Skip to content

Commit

Permalink
Merge pull request #5147 from takagi/fix-contrastive-test
Browse files Browse the repository at this point in the history
Trivial fix for parameterized test case of F.contrastive
  • Loading branch information
kmaehashi committed Jul 26, 2018
2 parents d321a32 + ce5d0f6 commit c09441d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -15,7 +15,7 @@
@testing.parameterize(
*testing.product({
'batchsize': [5, 10], 'input_dim': [2, 3], 'margin': [1, 2],
'reduce': ['mean', 'no'], 'label_dtype': [numpy.int32, numpy.int32]
'reduce': ['mean', 'no'], 'label_dtype': [numpy.int32, numpy.int64]
})
)
class TestContrastive(unittest.TestCase):
Expand Down

0 comments on commit c09441d

Please sign in to comment.