not bad this setup

This commit is contained in:
2025-12-18 09:30:21 +01:00
parent 4fdf817d75
commit 0a034225ef
4 changed files with 120 additions and 58 deletions

View File

@@ -82,7 +82,7 @@ class GraphDataModule(LightningDataModule):
conductivity = torch.tensor(
snapshot["conductivity"], dtype=torch.float32
)
temperature = torch.tensor(snapshot["temperature"], dtype=torch.float32)
temperature = torch.tensor(snapshot["temperature"], dtype=torch.float32)[:50]
pos = torch.tensor(geometry["points"], dtype=torch.float32)[:, :2]