Skip to content

Commit

Permalink
2023/09/04-15:35:13 (Linux sv2111 unknown)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbenner committed Sep 4, 2023
1 parent 8b24dc2 commit 8e892e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coordinationnet/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ def __init__(self, cache_file = None, **kwargs):

if self.lit_model.global_rank == 0:

print(f'{model_config}')
print(f'{self.lit_model.model.model_config}')

print(f'Creating a GNN model with {self.n_parameters:,} parameters')
print(f'Creating a GNN model with {self.lit_model.model.n_parameters:,} parameters')

def fit_scaler(self, data : LitCoordinationFeaturesData):
y = torch.cat([ y_batch for _, y_batch in data.get_dataloader(data.data) ])
Expand Down

0 comments on commit 8e892e5

Please sign in to comment.