You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thank you so much for this amazing program!
I am trying to run DALES dataset using the code from train_S3DIS.py, I was following steps from #72 but I reached an issue. while running the program, I am having trouble with function def forward(self, batch, config):
Specifically the line: x = batch.features.clone().detach()
The batch created from the code using DALES dataset creates a batch with these info:
where features is not formatted the same way in S3DIS dataset. Then I get an error that is originating from blocks.py line 361:
x=torch.cat((x, torch.zeros_like(x[:1, :])), 0)
I get this error:
x = torch.cat((x, torch.zeros_like(x[:1, :])), 0)
IndexError: too many indices for tensor of dimension 1
Now I am not sure why I am getting features to be a different tensor than when I run it on S3DIS dataset. If you can help me @HuguesTHOMAS I'd really appreciate it.
The text was updated successfully, but these errors were encountered:
First of all thank you so much for this amazing program!
I am trying to run DALES dataset using the code from train_S3DIS.py, I was following steps from #72 but I reached an issue. while running the program, I am having trouble with function
def forward(self, batch, config):
Specifically the line:
x = batch.features.clone().detach()
The batch created from the code using DALES dataset creates a batch with these info:
where features is not formatted the same way in S3DIS dataset. Then I get an error that is originating from blocks.py line 361:
I get this error:
Now I am not sure why I am getting features to be a different tensor than when I run it on S3DIS dataset. If you can help me @HuguesTHOMAS I'd really appreciate it.
The text was updated successfully, but these errors were encountered: