You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
why won't it use kwargs to adress cases like def forward(x, steps) or stuff like that when the model does not get two tensors but a variable that affect the model flow.
I think it can be done in this way:
def summary(model,shape,**kwargs):
#create dummy tensor in shape
#check the flow with model.forward(dummy, **kwargs)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
why won't it use kwargs to adress cases like def forward(x, steps) or stuff like that when the model does not get two tensors but a variable that affect the model flow.
I think it can be done in this way:
def summary(model,shape,**kwargs):
#create dummy tensor in shape
#check the flow with model.forward(dummy, **kwargs)
Beta Was this translation helpful? Give feedback.
All reactions