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
We want to be able to do completely random mini-batch stochastic gradient descent ( or maybe other flavours...)
We could consider something like: https://github.com/epapoutsellis/StochasticCIL/blob/b177e46dfb22c5305f52b6d61f16f42e03ddb2f0/Wrappers/Python/cil/optimisation/functions/SGFunction.py#L61
Example usage:
rs = RandomSampling.uniform(len(f_subsets), batch_size=5) F = SGFunction(f_subsets, selection=rs) proxSGD = ISTA(initial = initial, f=F, g=G, update_objective_interval = rs.num_batches, max_iteration = num_epochs*rs.num_batches) proxSGD.run(verbose=1)
Points to consider
Discussed with @zeljkozeljko
The text was updated successfully, but these errors were encountered:
Please check also #1345 (comment) Walnut comparison for TV recon using SGD and MB.
Sorry, something went wrong.
MargaretDuff
No branches or pull requests
We want to be able to do completely random mini-batch stochastic gradient descent ( or maybe other flavours...)
We could consider something like:
https://github.com/epapoutsellis/StochasticCIL/blob/b177e46dfb22c5305f52b6d61f16f42e03ddb2f0/Wrappers/Python/cil/optimisation/functions/SGFunction.py#L61
Example usage:
Points to consider
Discussed with @zeljkozeljko
The text was updated successfully, but these errors were encountered: