We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see different examples in README.md and archs.py
x = Dense(args.num_features, kernel_initializer='he_normal', kernel_regularizer=regularizers.l2(weight_decay))(x) x = BatchNormalization()(x) output = ArcFace(10, regularizer=regularizers.l2(weight_decay))([x, y])
x = Dense(512, kernel_initializer='he_normal')(x) x = BatchNormalization()(x) output = ArcFace(num_classes=10)([x, y])
Which examples is correct?
The text was updated successfully, but these errors were encountered:
The first one seems better as it includes weight decay regularization, but both are correct.
Sorry, something went wrong.
No branches or pull requests
I see different examples in README.md and archs.py
Which examples is correct?
The text was updated successfully, but these errors were encountered: