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
Note how there's only only one checkpoint for each value of i. This is actually problematic under usual conditions, wherei == len(bulk_circuit_lists)-1 results in two calls to pygsti's optimizer: one call for a chi-squared objective and one call for log-likelihood.
We should change this code so we checkpoint the final GST chi-squared iteration as soon as it's complete (i.e., before the log-likelihood optimization step begins).
The text was updated successfully, but these errors were encountered:
This code block manages checkpointing for the GateSetTomography class:
pyGSTi/pygsti/protocols/gst.py
Lines 1417 to 1436 in 962216e
Note how there's only only one checkpoint for each value of
i
. This is actually problematic under usual conditions, wherei == len(bulk_circuit_lists)-1
results in two calls to pygsti's optimizer: one call for a chi-squared objective and one call for log-likelihood.We should change this code so we checkpoint the final GST chi-squared iteration as soon as it's complete (i.e., before the log-likelihood optimization step begins).
The text was updated successfully, but these errors were encountered: