You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been accessing parameters from pre-run simulations roughly like: images, parameters = sim.simulate(num_sim=num_sim, indices=indices, return_parameters=True, batch_size=batchsize)
and for grabbing parameters using the ordering given in priors as
e.g for parameters[-1] for snr, parameters[1] for quaternions.
I'm thinking there may be a simple way of converting the parameters output from simulate(...) so that I could do something like snr = parameters["snr"] through keys.
The text was updated successfully, but these errors were encountered:
I've been accessing parameters from pre-run simulations roughly like:
images, parameters = sim.simulate(num_sim=num_sim, indices=indices, return_parameters=True, batch_size=batchsize)
and for grabbing parameters using the ordering given in priors as
e.g for parameters[-1] for snr, parameters[1] for quaternions.
I'm thinking there may be a simple way of converting the
parameters
output fromsimulate(...)
so that I could do something likesnr = parameters["snr"]
through keys.The text was updated successfully, but these errors were encountered: