broadinstitute / keras-resnet

Keras package for deep residual networks
Other
300 stars 127 forks source link

0.2.0 (WIP) #40

Closed 0x00b1 closed 2 years ago

0x00b1 commented 6 years ago

Features

Depreciations

To-do

0x00b1 commented 6 years ago

@hgaiser Re: use_bias. That’s a mistake. I’ll fix shortly. 😆

0x00b1 commented 6 years ago

@hgaiser And thanks for the feedback!

0x00b1 commented 6 years ago

@hgaiser I think the BatchNormalization layer requires a training=False in the call, otherwise it will update its weights.

I missed this. I assumed it was in the constructor, but you’re right it’s in the call. Thanks, dude!

Edit: And it’s training not trainable! 😳

Edit: And call doesn’t take **kwargs. Woof.