Skip to content

Commit 45fee03

Browse files
committed
print input/out dim everytime
1 parent 9e08511 commit 45fee03

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

chebai/models/base.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ def __init__(
4949
assert input_dim is not None, "input_dim must be specified"
5050
self.out_dim = out_dim
5151
self.input_dim = input_dim
52+
print(
53+
f"Input dimension for the model: {self.input_dim}",
54+
f"Output dimension for the model: {self.out_dim}",
55+
)
5256

5357
self.save_hyperparameters(
5458
ignore=[

0 commit comments

Comments
 (0)