Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipinoGambino committed Feb 8, 2024
1 parent 6a973e3 commit e79d26f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion connectx/nns/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ def forward(
) -> Dict[str, Any]:
logging.info(f"Beginning forward pass")
x, available_actions_mask, subtask_embeddings = self.dict_input_layer(x)
logging.info(f"Getting base_model outputs {x.shape}")
for key,val in x.items():
logging.info(f"Getting base_model outputs {key}:{val.shape}")
base_out = self.base_model(x)
logging.info(f"Ignoring subtasks")
if subtask_embeddings is not None:
Expand Down

0 comments on commit e79d26f

Please sign in to comment.