Description: To address an issue where instantiating BitFeedForward() with post_act_ln=False will result in TypeError: 'NoneType' object is not callable, I've added an if-else statement to create different sequences depending on the value of post_act_ln. Please see the issue for more details.
BitFeedForward()
withpost_act_ln=False
will result inTypeError: 'NoneType' object is not callable
, I've added an if-else statement to create different sequences depending on the value ofpost_act_ln
. Please see the issue for more details.