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
Datajoint demo notebook
method_fn = "mei.methods.gradient_ascent" method_config = dict( initial=dict(path="mei.initial.RandomNormal"), optimizer=dict(path="torch.optim.SGD", kwargs=dict(lr=0.1)), stopper=dict(path="mei.stoppers.NumIterations", kwargs=dict(num_iterations=1000)), objectives=[dict(path="mei.objectives.EvaluationObjective", kwargs=dict(interval=10))], device="cuda", ) MEIMethod().add_method(method_fn, method_config, comment="My MEI method", skip_duplicates=True) MEIMethod()
Uses lr=0.1, there resulting image looks like noise, which could confuse new users. The datajoint free pipe uses lr=1 which works better.
lr=0.1
lr=1
The text was updated successfully, but these errors were encountered:
Want to push the update?
Sorry, something went wrong.
update lr to 1 to match quickstart notebook
bf2f4b3
Address Issue sinzlab#38
Sure: #40
No branches or pull requests
Datajoint demo notebook
Uses
lr=0.1
, there resulting image looks like noise, which could confuse new users. The datajoint free pipe useslr=1
which works better.The text was updated successfully, but these errors were encountered: