Skip to content

Commit

Permalink
Removed float32
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav S Deshmukh committed Sep 23, 2023
1 parent 57196b1 commit a9d3d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def forward(self, data_objects):
# For each data object
for i, data in enumerate(data_objects):
# Apply initial transform
conv_data = self.init_transform[i](data.x.to(torch.float32))
conv_data = self.init_transform[i](data.x)

# Apply convolutional layers
for layer in self.conv_layers[i]:
Expand Down

0 comments on commit a9d3d7a

Please sign in to comment.