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
My understanding of mix_activations is whether to mix activation functions within a batch when sampling from the MLP prior. Now there's
mix_activations
if not (('mix_activations' in hyperparameters) and hyperparameters['mix_activations']): s = hyperparameters['prior_mlp_activations']() hyperparameters['prior_mlp_activations'] = lambda: s
which seems to support that. Now there's this comment:
config["mix_activations"] = False # False heisst eig True
which seems to imply True and False are switched. Can you confirm that the comment is out of date, or am I missing something?
True
False
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My understanding of
mix_activations
is whether to mix activation functions within a batch when sampling from the MLP prior.Now there's
which seems to support that. Now there's this comment:
which seems to imply
True
andFalse
are switched.Can you confirm that the comment is out of date, or am I missing something?
The text was updated successfully, but these errors were encountered: