bubas3000

Results 6 comments of bubas3000

Hello @cpuhrsch , Thanks for your quick reply! The shape of inputs is (12000,100,9) I will try to explain what each one means to be more clear. Basically I have...

I forgot to mention that norm is BatchNorm1d. One more question if you allow me. How is the time performance of nested tensors in comparison to normal torch tensors? Thank...

Hello @cpuhrsch , That's what I am looking for, thank you! Is it expected to have autograd support soon or should I try to do it "by hand"? I will...

Hello @cpuhrsch , Using for-loops will definitely hurt my time performance... I can try to run without BatchNorm1d if you think it would help. Thank you, Afonso

Ps tried to run this snippet and I got the following error: Traceback (most recent call last): File "a.py", line 26, in x_max = torch.max(x, dim=1, keepdim=True)[0] File "/home/afonso/anaconda3/envs/teste/lib/python3.7/site-packages/nestedtensor/nested/nested.py", line...

Hi @cpuhrsch , I was able to run it! Thank you for your help, I ended up using an 1D tensor and a tensor of indexes using scatter_max to compute...