Results 237 comments of Jan "yenda" Trmal

OK, I'm trying to get started with the C++ -- you can catch up from Python direction in a week or two, I don't think I will be faster than...

I have something in C++, will try to make PR next week -- I will be traveling over the weekend. y. On Fri, May 28, 2021 at 12:15 AM Daniel...

I'm willing to take a stab at it, if it would be acceptable, to take the weight from @th33xitus shoulders. Probably next week, if that's ok.

I'm sorry for being late on this. It's just my IRL existence was quite complicated the last few months. I should have time on this soon (November at the latest)...

I've been thinking how to enable this without demanding of too much continuous book-keeping from kiauh In essence, I think we could expect each project/repo that wants to be compatible...

And sorry for being terse

fangjun's code gave me this: ``` ====================================================================== FAIL: test_rnnt_loss_empty_reference (__main__.TestRnntLoss) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/jtrmal/projects/k2/k2/python/tests/rnnt_loss_test.py", line 845, in test_rnnt_loss_empty_reference assert torch.allclose(m, expected.to(device)), ( AssertionError: tensor(1.1028, device='cuda:0') ```...

I tried this code: ``` assert torch.allclose(m, expected.to(device)), ( m, expected, m - expected.to(device), ) ``` and the output was ``` ====================================================================== FAIL: test_rnnt_loss_empty_reference (__main__.TestRnntLoss) ---------------------------------------------------------------------- Traceback (most recent call...

However, if I do something like this ``` 850 assert torch.testing.assert_close( 851 m, 852 expected.to(device), 853 check_layout=False, 854 check_device=False, 855 check_dtype=False, 856 ), (m, expected.to(device), (m - expected.to(device))) ``` I...