{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# An example showing how to generate bootstrapped error bars." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Populating the interactive namespace from numpy and matplotlib\n" ] } ], "source": [ "import os\n", "import sys\n", "import time\n", "import json\n", "\n", "import pygsti\n", "from pygsti.modelpacks.legacy import std1Q_XYI\n", "\n", "%pylab inline" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "-- Std Practice: Iter 1 of 1 (TP) --: \n", " --- Iterative MLGST: [##################################################] 100.0% 1282 operation sequences ---\n", " Iterative MLGST Total Time: 7.2s\n" ] } ], "source": [ "#Get a GST estimate (similar to Tutorial 0)\n", "\n", "# 1) get the target Model\n", "target_model = std1Q_XYI.target_model()\n", "\n", "# 2) get the building blocks needed to specify which operation sequences are needed\n", "prep_fiducials, meas_fiducials = std1Q_XYI.prepStrs, std1Q_XYI.effectStrs\n", "germs = std1Q_XYI.germs\n", "maxLengths = [1,2,4,8,16]\n", "\n", "# 3) generate \"fake\" data from a depolarized version of target_model\n", "mdl_datagen = target_model.depolarize(op_noise=0.1, spam_noise=0.001)\n", "listOfExperiments = pygsti.construction.make_lsgst_experiment_list(\n", " target_model, prep_fiducials, meas_fiducials, germs, maxLengths)\n", "ds = pygsti.construction.generate_fake_data(mdl_datagen, listOfExperiments, nSamples=1000,\n", " sampleError=\"binomial\", seed=1234)\n", "\n", "\n", "results = pygsti.do_stdpractice_gst(ds, target_model, prep_fiducials, meas_fiducials,\n", " germs, maxLengths, modes=\"TP\")\n", "estimated_model = results.estimates['TP'].models['stdgaugeopt']" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Parametric Bootstrapping\n", "Here we do parametric bootstrapping, as indicated by the 'parametric' argument below.\n", "The output is eventually stored in the \"mean\" and \"std\" Models, which hold the mean and standard deviation values of the set of bootstrapped models (after gauge optimization). It is this latter \"standard deviation Model\"\n", "which holds the collection of error bars. Note: due to print setting issues, the outputs that are printed here will not necessarily reflect the true accuracy of the estimates made.\n" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Creating DataSets: \n", "0 Generating parametric dataset.\n", "1 Generating parametric dataset.\n", "2 Generating parametric dataset.\n", "3 Generating parametric dataset.\n", "4 Generating parametric dataset.\n", "5 Generating parametric dataset.\n", "6 Generating parametric dataset.\n", "7 Generating parametric dataset.\n", "8 Generating parametric dataset.\n", "9 Generating parametric dataset.\n", "Creating Models: \n", "Running MLGST Iteration 0 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244653976670047\n", " 1.192830953128653\n", " 0.9689326363609111\n", " 0.9189157715091224\n", " 0.07422658287182586\n", " 0.011606078537692615\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 54.3315 (92 data params - 31 model params = expected mean of 61; p-value = 0.7144)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 54.4952\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 139.054 (168 data params - 31 model params = expected mean of 137; p-value = 0.434979)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 139.281\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 433.775 (450 data params - 31 model params = expected mean of 419; p-value = 0.298928)\n", " Completed in 0.6s\n", " 2*Delta(log(L)) = 434.566\n", " Iteration 3 took 0.8s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 871.047 (862 data params - 31 model params = expected mean of 831; p-value = 0.16274)\n", " Completed in 1.2s\n", " 2*Delta(log(L)) = 872.842\n", " Iteration 4 took 1.4s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1273.04 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.325873)\n", " Completed in 1.8s\n", " 2*Delta(log(L)) = 1274.82\n", " Iteration 5 took 2.1s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 637.362 below upper bound of -2.136e+06\n", " 2*Delta(log(L)) = 1274.72 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.313964)\n", " Completed in 2.1s\n", " 2*Delta(log(L)) = 1274.72\n", " Final MLGST took 2.1s\n", " \n", "Iterative MLGST Total Time: 7.2s\n", "Running MLGST Iteration 1 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.243869714012627\n", " 1.16340135495376\n", " 0.9505771532444359\n", " 0.9192169139457478\n", " 0.03669226197655027\n", " 0.007493766406182375\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 62.8464 (92 data params - 31 model params = expected mean of 61; p-value = 0.410693)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 62.9639\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 141.38 (168 data params - 31 model params = expected mean of 137; p-value = 0.38131)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 141.59\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 417.084 (450 data params - 31 model params = expected mean of 419; p-value = 0.517254)\n", " Completed in 0.9s\n", " 2*Delta(log(L)) = 417.095\n", " Iteration 3 took 1.0s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 870.4 (862 data params - 31 model params = expected mean of 831; p-value = 0.166552)\n", " Completed in 1.2s\n", " 2*Delta(log(L)) = 870.82\n", " Iteration 4 took 1.4s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1245.19 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.540991)\n", " Completed in 2.1s\n", " 2*Delta(log(L)) = 1245.74\n", " Iteration 5 took 2.5s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 622.828 below upper bound of -2.13648e+06\n", " 2*Delta(log(L)) = 1245.66 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.537301)\n", " Completed in 6.6s\n", " 2*Delta(log(L)) = 1245.66\n", " Final MLGST took 6.6s\n", " \n", "Iterative MLGST Total Time: 12.3s\n", "Running MLGST Iteration 2 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244707863399396\n", " 1.1537403437788096\n", " 0.9521888844551547\n", " 0.9084465475528515\n", " 0.03371022411959681\n", " 0.02563577347463864\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 48.434 (92 data params - 31 model params = expected mean of 61; p-value = 0.878044)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 48.3704\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 122.032 (168 data params - 31 model params = expected mean of 137; p-value = 0.815624)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 122.378\n", " Iteration 2 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 419.72 (450 data params - 31 model params = expected mean of 419; p-value = 0.480909)\n", " Completed in 0.8s\n", " 2*Delta(log(L)) = 420.806\n", " Iteration 3 took 1.0s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 845.378 (862 data params - 31 model params = expected mean of 831; p-value = 0.356808)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 847.099\n", " Iteration 4 took 1.5s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1301.32 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.157176)\n", " Completed in 2.0s\n", " 2*Delta(log(L)) = 1303.25\n", " Iteration 5 took 2.4s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 651.59 below upper bound of -2.13642e+06\n", " 2*Delta(log(L)) = 1303.18 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.148633)\n", " Completed in 5.5s\n", " 2*Delta(log(L)) = 1303.18\n", " Final MLGST took 5.5s\n", " \n", "Iterative MLGST Total Time: 11.3s\n", "Running MLGST Iteration 3 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244050277155162\n", " 1.2124619829658454\n", " 0.9762089809043478\n", " 0.9203172425509635\n", " 0.03313244495774025\n", " 0.02235228395337996\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 63.0797 (92 data params - 31 model params = expected mean of 61; p-value = 0.402678)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 63.7862\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 135.696 (168 data params - 31 model params = expected mean of 137; p-value = 0.515429)\n", " Completed in 0.3s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 2*Delta(log(L)) = 136.6\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 417.539 (450 data params - 31 model params = expected mean of 419; p-value = 0.510963)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 418.44\n", " Iteration 3 took 0.9s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 805.317 (862 data params - 31 model params = expected mean of 831; p-value = 0.732436)\n", " Completed in 1.0s\n", " 2*Delta(log(L)) = 806.567\n", " Iteration 4 took 1.3s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1185.16 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.907703)\n", " Completed in 1.7s\n", " 2*Delta(log(L)) = 1186.39\n", " Iteration 5 took 2.1s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 593.158 below upper bound of -2.1362e+06\n", " 2*Delta(log(L)) = 1186.32 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.90367)\n", " Completed in 1.4s\n", " 2*Delta(log(L)) = 1186.32\n", " Final MLGST took 1.4s\n", " \n", "Iterative MLGST Total Time: 6.4s\n", "Running MLGST Iteration 4 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.24484375709879\n", " 1.1649382938018655\n", " 0.9568638742519098\n", " 0.9031869835559561\n", " 0.033200958666622024\n", " 0.017284232230193083\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 56.7701 (92 data params - 31 model params = expected mean of 61; p-value = 0.629839)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 56.8667\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 130.755 (168 data params - 31 model params = expected mean of 137; p-value = 0.634092)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 131.182\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 442.102 (450 data params - 31 model params = expected mean of 419; p-value = 0.209906)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 442.695\n", " Iteration 3 took 0.8s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 888.55 (862 data params - 31 model params = expected mean of 831; p-value = 0.0812685)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 889.66\n", " Iteration 4 took 1.6s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1313.66 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.106446)\n", " Completed in 1.7s\n", " 2*Delta(log(L)) = 1314.88\n", " Iteration 5 took 2.1s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 657.405 below upper bound of -2.1359e+06\n", " 2*Delta(log(L)) = 1314.81 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.102417)\n", " Completed in 4.8s\n", " 2*Delta(log(L)) = 1314.81\n", " Final MLGST took 4.9s\n", " \n", "Iterative MLGST Total Time: 10.1s\n", "Running MLGST Iteration 5 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244643403566763\n", " 1.1562039604688137\n", " 0.9496844028666662\n", " 0.9318264748631984\n", " 0.07270157916508631\n", " 0.008013391048464916\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 46.2692 (92 data params - 31 model params = expected mean of 61; p-value = 0.918875)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 46.4106\n", " Iteration 1 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 98.0874 (168 data params - 31 model params = expected mean of 137; p-value = 0.995035)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 98.0483\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 414.136 (450 data params - 31 model params = expected mean of 419; p-value = 0.557892)\n", " Completed in 0.8s\n", " 2*Delta(log(L)) = 414.601\n", " Iteration 3 took 1.0s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 807.782 (862 data params - 31 model params = expected mean of 831; p-value = 0.711756)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 808.505\n", " Iteration 4 took 1.6s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1206.65 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.811649)\n", " Completed in 1.9s\n", " 2*Delta(log(L)) = 1207.53\n", " Iteration 5 took 2.2s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 603.738 below upper bound of -2.13676e+06\n", " 2*Delta(log(L)) = 1207.48 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.80705)\n", " Completed in 4.7s\n", " 2*Delta(log(L)) = 1207.48\n", " Final MLGST took 4.8s\n", " \n", "Iterative MLGST Total Time: 10.4s\n", "Running MLGST Iteration 6 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.243488108495374\n", " 1.165012987691403\n", " 0.9474366699518069\n", " 0.9203189657954223\n", " 0.04090095083314043\n", " 0.0070200724732477505\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 72.5965 (92 data params - 31 model params = expected mean of 61; p-value = 0.146998)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 72.4835\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 148.693 (168 data params - 31 model params = expected mean of 137; p-value = 0.23353)\n", " Completed in 0.5s\n", " 2*Delta(log(L)) = 148.773\n", " Iteration 2 took 0.6s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 435.476 (450 data params - 31 model params = expected mean of 419; p-value = 0.279334)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 435.899\n", " Iteration 3 took 0.8s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 867.184 (862 data params - 31 model params = expected mean of 831; p-value = 0.186384)\n", " Completed in 1.1s\n", " 2*Delta(log(L)) = 868.062\n", " Iteration 4 took 1.3s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1278.84 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.285778)\n", " Completed in 1.8s\n", " 2*Delta(log(L)) = 1279.9\n", " Iteration 5 took 2.1s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 639.908 below upper bound of -2.13566e+06\n", " 2*Delta(log(L)) = 1279.82 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.27927)\n", " Completed in 5.8s\n", " 2*Delta(log(L)) = 1279.82\n", " Final MLGST took 5.8s\n", " \n", "Iterative MLGST Total Time: 11.0s\n", "Running MLGST Iteration 7 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 4.244825840755222\n", " 1.1607854217596698\n", " 0.9292803921438999\n", " 0.8958478552912302\n", " 0.03648710217525403\n", " 0.005481843557321346\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 61.4652 (92 data params - 31 model params = expected mean of 61; p-value = 0.45923)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 61.3186\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 126.314 (168 data params - 31 model params = expected mean of 137; p-value = 0.733237)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 126.31\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 408.23 (450 data params - 31 model params = expected mean of 419; p-value = 0.637659)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 408.489\n", " Iteration 3 took 0.9s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 846.207 (862 data params - 31 model params = expected mean of 831; p-value = 0.349347)\n", " Completed in 1.2s\n", " 2*Delta(log(L)) = 846.906\n", " Iteration 4 took 1.4s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1204.55 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.823037)\n", " Completed in 1.8s\n", " 2*Delta(log(L)) = 1205.22\n", " Iteration 5 took 2.1s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 602.585 below upper bound of -2.13604e+06\n", " 2*Delta(log(L)) = 1205.17 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.819723)\n", " Completed in 4.0s\n", " 2*Delta(log(L)) = 1205.17\n", " Final MLGST took 4.0s\n", " \n", "Iterative MLGST Total Time: 9.3s\n", "Running MLGST Iteration 8 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244918327291839\n", " 1.1497175414386247\n", " 0.9499958939687557\n", " 0.8863416645506449\n", " 0.03990669419647161\n", " 0.028278621122238244\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 38.1221 (92 data params - 31 model params = expected mean of 61; p-value = 0.99049)\n", " Completed in 0.5s\n", " 2*Delta(log(L)) = 38.2328\n", " Iteration 1 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 117.187 (168 data params - 31 model params = expected mean of 137; p-value = 0.888629)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 117.364\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 397.889 (450 data params - 31 model params = expected mean of 419; p-value = 0.763857)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 398.011\n", " Iteration 3 took 0.8s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 771.555 (862 data params - 31 model params = expected mean of 831; p-value = 0.930295)\n", " Completed in 1.1s\n", " 2*Delta(log(L)) = 772.308\n", " Iteration 4 took 1.3s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1147.5 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.982818)\n", " Completed in 1.8s\n", " 2*Delta(log(L)) = 1148.41\n", " Iteration 5 took 2.2s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 574.173 below upper bound of -2.13653e+06\n", " 2*Delta(log(L)) = 1148.35 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.982039)\n", " Completed in 1.4s\n", " 2*Delta(log(L)) = 1148.35\n", " Final MLGST took 1.4s\n", " \n", "Iterative MLGST Total Time: 6.6s\n", "Running MLGST Iteration 9 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244329086925476\n", " 1.170786859388005\n", " 0.9552770215877492\n", " 0.9397649029334779\n", " 0.030389543292175643\n", " 0.017057158675289986\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 45.9565 (92 data params - 31 model params = expected mean of 61; p-value = 0.923886)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 46.0754\n", " Iteration 1 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 112.293 (168 data params - 31 model params = expected mean of 137; p-value = 0.939692)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 112.386\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 400.962 (450 data params - 31 model params = expected mean of 419; p-value = 0.728788)\n", " Completed in 0.6s\n", " 2*Delta(log(L)) = 400.815\n", " Iteration 3 took 0.8s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 835.78 (862 data params - 31 model params = expected mean of 831; p-value = 0.446954)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 836.156\n", " Iteration 4 took 1.5s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1205.73 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.816695)\n", " Completed in 1.7s\n", " 2*Delta(log(L)) = 1205.95\n", " Iteration 5 took 2.1s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 602.944 below upper bound of -2.13618e+06\n", " 2*Delta(log(L)) = 1205.89 (1282 data params - 31 model params = expected mean of 1251; p-value = 0.815828)\n", " Completed in 4.8s\n", " 2*Delta(log(L)) = 1205.89\n", " Final MLGST took 4.8s\n", " \n", "Iterative MLGST Total Time: 10.0s\n" ] } ], "source": [ "#The number of simulated datasets & models made for bootstrapping purposes. \n", "# For good statistics, should probably be greater than 10.\n", "numGatesets=10\n", "\n", "param_boot_models = pygsti.drivers.make_bootstrap_models(\n", " numGatesets, ds, 'parametric', prep_fiducials, meas_fiducials, germs, maxLengths,\n", " inputModel=estimated_model, startSeed=0, returnData=False,\n", " verbosity=2)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "scrolled": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Spam weight 0\n", "Spam weight 1\n", "Spam weight 2\n", "Spam weight 3\n", "Spam weight 4\n", "Spam weight 5\n", "Spam weight 6\n", "Spam weight 7\n", "Spam weight 8\n", "Spam weight 9\n", "Spam weight 10\n", "Spam weight 11\n", "Spam weight 12\n", "Best SPAM weight is 1.0\n" ] } ], "source": [ "gauge_opt_pboot_models = pygsti.drivers.gauge_optimize_model_list(param_boot_models, estimated_model,\n", " plot=False) #plotting support removed w/matplotlib" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "scrolled": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Parametric bootstrapped error bars, with 10 resamples\n", "\n", "Error in rho vec:\n", "TPSPAMVec with dimension 4\n", " 0.71 0 0 0\n", "\n", "\n", "Error in effect vecs:\n", "TPPOVM with effect vectors:\n", "0: FullSPAMVec with dimension 4\n", " 0 0 0 0\n", "\n", "1: ComplementSPAMVec with dimension 4\n", " 1.41 0 0 0\n", "\n", "\n", "\n", "Error in Gi:\n", "TPDenseOp with shape (4, 4)\n", " 1.00 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", "\n", "\n", "Error in Gx:\n", "TPDenseOp with shape (4, 4)\n", " 1.00 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", "\n", "\n", "Error in Gy:\n", "TPDenseOp with shape (4, 4)\n", " 1.00 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", "\n" ] } ], "source": [ "pboot_mean = pygsti.drivers.to_mean_model(gauge_opt_pboot_models, estimated_model)\n", "pboot_std = pygsti.drivers.to_std_model(gauge_opt_pboot_models, estimated_model)\n", "\n", "#Summary of the error bars\n", "print(\"Parametric bootstrapped error bars, with\", numGatesets, \"resamples\\n\")\n", "print(\"Error in rho vec:\") \n", "print(pboot_std['rho0'], end='\\n\\n')\n", "print(\"Error in effect vecs:\")\n", "print(pboot_std['Mdefault'], end='\\n\\n')\n", "print(\"Error in Gi:\")\n", "print(pboot_std['Gi'], end='\\n\\n')\n", "print(\"Error in Gx:\")\n", "print(pboot_std['Gx'], end='\\n\\n')\n", "print(\"Error in Gy:\")\n", "print(pboot_std['Gy'])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Non-parametric Bootstrapping\n", "Here we do non-parametric bootstrapping, as indicated by the 'nonparametric' argument below.\n", "The output is again eventually stored in the \"mean\" and \"std\" Models, which hold the mean and standard deviation values of the set of bootstrapped models (after gauge optimization). It is this latter \"standard deviation Model\"\n", "which holds the collection of error bars. Note: due to print setting issues, the outputs that are printed here will not necessarily reflect the true accuracy of the estimates made.\n", "\n", "(Technical note: ddof = 1 is by default used when computing the standard deviation -- see numpy.std -- meaning that we are computing a standard deviation of the sample, not of the population.)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Creating DataSets: \n", "0 Generating non-parametric dataset.\n", "1 Generating non-parametric dataset.\n", "2 Generating non-parametric dataset.\n", "3 Generating non-parametric dataset.\n", "4 Generating non-parametric dataset.\n", "5 Generating non-parametric dataset.\n", "6 Generating non-parametric dataset.\n", "7 Generating non-parametric dataset.\n", "8 Generating non-parametric dataset.\n", "9 Generating non-parametric dataset.\n", "Creating Models: \n", "Running MLGST Iteration 0 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244845695931912\n", " 1.180285364189147\n", " 0.9862995636431281\n", " 0.902101822920102\n", " 0.09233562824970798\n", " 0.06946279872379223\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 163.213 (92 data params - 31 model params = expected mean of 61; p-value = 2.89595e-11)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 163.979\n", " Iteration 1 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 366.335 (168 data params - 31 model params = expected mean of 137; p-value = 0)\n", " Completed in 0.6s\n", " 2*Delta(log(L)) = 367.229\n", " Iteration 2 took 0.7s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1002.45 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 1004.83\n", " Iteration 3 took 0.9s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1811.85 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 1815.26\n", " Iteration 4 took 1.5s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2698.48 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.8s\n", " 2*Delta(log(L)) = 2701.78\n", " Iteration 5 took 2.2s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1350.7 below upper bound of -2.13485e+06\n", " 2*Delta(log(L)) = 2701.4 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.4s\n", " 2*Delta(log(L)) = 2701.4\n", " Final MLGST took 1.4s\n", " \n", "Iterative MLGST Total Time: 7.0s\n", "Running MLGST Iteration 1 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244188636580856\n", " 1.1517827075400349\n", " 0.9655135770562866\n", " 0.9082976321749557\n", " 0.04860263960205439\n", " 0.02186639107735652\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 146.601 (92 data params - 31 model params = expected mean of 61; p-value = 5.25726e-09)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 147.869\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 274.874 (168 data params - 31 model params = expected mean of 137; p-value = 2.78093e-11)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 276.479\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 861.635 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.8s\n", " 2*Delta(log(L)) = 864.309\n", " Iteration 3 took 0.9s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1662.57 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.1s\n", " 2*Delta(log(L)) = 1664.8\n", " Iteration 4 took 1.4s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2456.71 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 2.8s\n", " 2*Delta(log(L)) = 2459.77\n", " Iteration 5 took 3.1s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1229.73 below upper bound of -2.13563e+06\n", " 2*Delta(log(L)) = 2459.47 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.7s\n", " 2*Delta(log(L)) = 2459.47\n", " Final MLGST took 1.7s\n", " \n", "Iterative MLGST Total Time: 7.8s\n", "Running MLGST Iteration 2 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.2448073300699045\n", " 1.141572198045367\n", " 0.9828516150265091\n", " 0.8821924040403455\n", " 0.03264139759550893\n", " 0.018800305608607182\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 152.32 (92 data params - 31 model params = expected mean of 61; p-value = 9.10147e-10)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 152.971\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 298.087 (168 data params - 31 model params = expected mean of 137; p-value = 5.62883e-14)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 299.453\n", " Iteration 2 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 937.718 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 941.677\n", " Iteration 3 took 0.8s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1719.38 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 1724.64\n", " Iteration 4 took 1.6s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2633.13 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.7s\n", " 2*Delta(log(L)) = 2639.19\n", " Iteration 5 took 2.0s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1319.4 below upper bound of -2.13523e+06\n", " 2*Delta(log(L)) = 2638.8 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.4s\n", " 2*Delta(log(L)) = 2638.8\n", " Final MLGST took 1.4s\n", " \n", "Iterative MLGST Total Time: 6.7s\n", "Running MLGST Iteration 3 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.243897328409793\n", " 1.2017515643930934\n", " 0.9736351960551161\n", " 0.9362239850082709\n", " 0.029479066656238114\n", " 0.006692004333867255\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 174.837 (92 data params - 31 model params = expected mean of 61; p-value = 6.36491e-13)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 175.493\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 325.315 (168 data params - 31 model params = expected mean of 137; p-value = 0)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 326.067\n", " Iteration 2 took 0.4s\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 858.545 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 859.868\n", " Iteration 3 took 0.8s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1692.02 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 1694.63\n", " Iteration 4 took 1.8s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2494.42 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 2.2s\n", " 2*Delta(log(L)) = 2497.55\n", " Iteration 5 took 2.6s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1248.61 below upper bound of -2.13547e+06\n", " 2*Delta(log(L)) = 2497.23 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.5s\n", " 2*Delta(log(L)) = 2497.23\n", " Final MLGST took 1.5s\n", " \n", "Iterative MLGST Total Time: 7.5s\n", "Running MLGST Iteration 4 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.246202328766042\n", " 1.1520853452470667\n", " 0.9764545650798362\n", " 0.9066489771225429\n", " 0.07354357830082349\n", " 0.019302775885633176\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 176.392 (92 data params - 31 model params = expected mean of 61; p-value = 3.78142e-13)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 177.609\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 316.436 (168 data params - 31 model params = expected mean of 137; p-value = 3.33067e-16)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 318.349\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 913.377 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 915.855\n", " Iteration 3 took 0.8s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1743.39 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 1746.68\n", " Iteration 4 took 1.5s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2606.38 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.7s\n", " 2*Delta(log(L)) = 2610.2\n", " Iteration 5 took 2.0s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1304.96 below upper bound of -2.13509e+06\n", " 2*Delta(log(L)) = 2609.92 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 3.5s\n", " 2*Delta(log(L)) = 2609.92\n", " Final MLGST took 3.5s\n", " \n", "Iterative MLGST Total Time: 8.6s\n", "Running MLGST Iteration 5 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244598260247877\n", " 1.1437330330943303\n", " 0.9616678165967568\n", " 0.9507864730743012\n", " 0.032108008334019424\n", " 0.01837190929970882\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 116.694 (92 data params - 31 model params = expected mean of 61; p-value = 2.32753e-05)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 117.694\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 249.287 (168 data params - 31 model params = expected mean of 137; p-value = 1.50925e-08)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 250.142\n", " Iteration 2 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 884.985 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.9s\n", " 2*Delta(log(L)) = 888.74\n", " Iteration 3 took 1.0s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1681.69 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 1685.49\n", " Iteration 4 took 1.5s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2479.15 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 2.1s\n", " 2*Delta(log(L)) = 2483.66\n", " Iteration 5 took 2.5s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1241.68 below upper bound of -2.13534e+06\n", " 2*Delta(log(L)) = 2483.36 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 2.1s\n", " 2*Delta(log(L)) = 2483.36\n", " Final MLGST took 2.1s\n", " \n", "Iterative MLGST Total Time: 8.0s\n", "Running MLGST Iteration 6 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244215220611\n", " 1.1794071130858117\n", " 0.9621288682814436\n", " 0.9237222775504998\n", " 0.03227630273126832\n", " 0.017188885795577733\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 160.089 (92 data params - 31 model params = expected mean of 61; p-value = 7.8896e-11)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 160.35\n", " Iteration 1 took 0.3s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 321.056 (168 data params - 31 model params = expected mean of 137; p-value = 1.11022e-16)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 321.985\n", " Iteration 2 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 907.37 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 908.307\n", " Iteration 3 took 0.9s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1832.64 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.4s\n", " 2*Delta(log(L)) = 1836.11\n", " Iteration 4 took 1.7s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2766.72 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.9s\n", " 2*Delta(log(L)) = 2771.52\n", " Iteration 5 took 2.3s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1385.58 below upper bound of -2.13458e+06\n", " 2*Delta(log(L)) = 2771.16 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.3s\n", " 2*Delta(log(L)) = 2771.16\n", " Final MLGST took 1.3s\n", " \n", "Iterative MLGST Total Time: 7.0s\n", "Running MLGST Iteration 7 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244815425123308\n", " 1.149149730793523\n", " 0.9449066135785853\n", " 0.8893549404955351\n", " 0.05783633057230394\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 0.03235959131326644\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 186.944 (92 data params - 31 model params = expected mean of 61; p-value = 1.04361e-14)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 187.248\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 361.082 (168 data params - 31 model params = expected mean of 137; p-value = 0)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 361.613\n", " Iteration 2 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 916.064 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.8s\n", " 2*Delta(log(L)) = 918.454\n", " Iteration 3 took 0.9s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1693.04 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.4s\n", " 2*Delta(log(L)) = 1696.61\n", " Iteration 4 took 1.6s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2570.75 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.8s\n", " 2*Delta(log(L)) = 2575.11\n", " Iteration 5 took 2.2s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1287.42 below upper bound of -2.13547e+06\n", " 2*Delta(log(L)) = 2574.84 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 5.7s\n", " 2*Delta(log(L)) = 2574.84\n", " Final MLGST took 5.7s\n", " \n", "Iterative MLGST Total Time: 11.4s\n", "Running MLGST Iteration 8 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244035041550426\n", " 1.1358903361549433\n", " 0.9427163127298118\n", " 0.9110426801402571\n", " 0.09879829799276398\n", " 0.02505584386042377\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 112.981 (92 data params - 31 model params = expected mean of 61; p-value = 5.91678e-05)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 113.15\n", " Iteration 1 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 264.276 (168 data params - 31 model params = expected mean of 137; p-value = 4.06604e-10)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 264.144\n", " Iteration 2 took 0.5s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 837.798 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.8s\n", " 2*Delta(log(L)) = 838.614\n", " Iteration 3 took 1.0s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1605.14 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.6s\n", " 2*Delta(log(L)) = 1606.16\n", " Iteration 4 took 1.8s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2494.35 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.8s\n", " 2*Delta(log(L)) = 2496.13\n", " Iteration 5 took 2.1s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1247.91 below upper bound of -2.13539e+06\n", " 2*Delta(log(L)) = 2495.82 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 3.3s\n", " 2*Delta(log(L)) = 2495.82\n", " Final MLGST took 3.3s\n", " \n", "Iterative MLGST Total Time: 9.1s\n", "Running MLGST Iteration 9 \n", "--- Circuit Creation ---\n", " 1282 sequences created\n", " Dataset has 1282 entries: 1282 utilized, 0 requested sequences were missing\n", "--- LGST ---\n", " Singular values of I_tilde (truncating to first 4 of 6) = \n", " 4.244395806039566\n", " 1.1575590718440645\n", " 0.9761127108175292\n", " 0.9288056665120381\n", " 0.07242344826070647\n", " 0.02966632169440047\n", " \n", " Singular values of target I_tilde (truncating to first 4 of 6) = \n", " 4.244164062089174\n", " 1.169453419312999\n", " 0.9475116980891475\n", " 0.9403516426340927\n", " 2.709096598579531e-16\n", " 1.7684881472925075e-16\n", " \n", "--- Iterative MLGST: Iter 1 of 5 92 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 144.031 (92 data params - 31 model params = expected mean of 61; p-value = 1.14063e-08)\n", " Completed in 0.3s\n", " 2*Delta(log(L)) = 144.887\n", " Iteration 1 took 0.3s\n", " \n", "--- Iterative MLGST: Iter 2 of 5 168 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 311.047 (168 data params - 31 model params = expected mean of 137; p-value = 1.44329e-15)\n", " Completed in 0.4s\n", " 2*Delta(log(L)) = 313.029\n", " Iteration 2 took 0.4s\n", " \n", "--- Iterative MLGST: Iter 3 of 5 450 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 885.685 (450 data params - 31 model params = expected mean of 419; p-value = 0)\n", " Completed in 0.7s\n", " 2*Delta(log(L)) = 889.834\n", " Iteration 3 took 0.9s\n", " \n", "--- Iterative MLGST: Iter 4 of 5 862 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 1697.91 (862 data params - 31 model params = expected mean of 831; p-value = 0)\n", " Completed in 1.2s\n", " 2*Delta(log(L)) = 1702.77\n", " Iteration 4 took 1.4s\n", " \n", "--- Iterative MLGST: Iter 5 of 5 1282 operation sequences ---: \n", " --- Minimum Chi^2 GST ---\n", " Sum of Chi^2 = 2511.4 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.9s\n", " 2*Delta(log(L)) = 2516.97\n", " Iteration 5 took 2.2s\n", " \n", " Switching to ML objective (last iteration)\n", " --- MLGST ---\n", " Maximum log(L) = 1258.34 below upper bound of -2.13552e+06\n", " 2*Delta(log(L)) = 2516.69 (1282 data params - 31 model params = expected mean of 1251; p-value = 0)\n", " Completed in 1.6s\n", " 2*Delta(log(L)) = 2516.69\n", " Final MLGST took 1.6s\n", " \n", "Iterative MLGST Total Time: 6.8s\n" ] } ], "source": [ "#The number of simulated datasets & models made for bootstrapping purposes. \n", "# For good statistics, should probably be greater than 10.\n", "numModels=10\n", "\n", "nonparam_boot_models = pygsti.drivers.make_bootstrap_models(\n", " numModels, ds, 'nonparametric', prep_fiducials, meas_fiducials, germs, maxLengths,\n", " targetModel=estimated_model, startSeed=0, returnData=False, verbosity=2)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Spam weight 0\n", "Spam weight 1\n", "Spam weight 2\n", "Spam weight 3\n", "Spam weight 4\n", "Spam weight 5\n", "Spam weight 6\n", "Spam weight 7\n", "Spam weight 8\n", "Spam weight 9\n", "Spam weight 10\n", "Spam weight 11\n", "Spam weight 12\n", "Best SPAM weight is 1.0\n" ] } ], "source": [ "gauge_opt_npboot_models = pygsti.drivers.gauge_optimize_model_list(nonparam_boot_models, estimated_model,\n", " plot=False) #plotting removed w/matplotlib" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Non-parametric bootstrapped error bars, with 10 resamples\n", "\n", "Error in rho vec:\n", "TPSPAMVec with dimension 4\n", " 0.71 0 0 0\n", "\n", "\n", "Error in effect vecs:\n", "TPPOVM with effect vectors:\n", "0: FullSPAMVec with dimension 4\n", " 0 0 0 0\n", "\n", "1: ComplementSPAMVec with dimension 4\n", " 1.41 0 0 0\n", "\n", "\n", "\n", "Error in Gi:\n", "TPDenseOp with shape (4, 4)\n", " 1.00 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", "\n", "\n", "Error in Gx:\n", "TPDenseOp with shape (4, 4)\n", " 1.00 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", "\n", "\n", "Error in Gy:\n", "TPDenseOp with shape (4, 4)\n", " 1.00 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", " 0 0 0 0\n", "\n" ] } ], "source": [ "npboot_mean = pygsti.drivers.to_mean_model(gauge_opt_npboot_models, estimated_model)\n", "npboot_std = pygsti.drivers.to_std_model(gauge_opt_npboot_models, estimated_model)\n", "\n", "#Summary of the error bars\n", "print(\"Non-parametric bootstrapped error bars, with\", numGatesets, \"resamples\\n\")\n", "print(\"Error in rho vec:\")\n", "print(npboot_std['rho0'], end='\\n\\n')\n", "print(\"Error in effect vecs:\")\n", "print(npboot_std['Mdefault'], end='\\n\\n')\n", "print(\"Error in Gi:\")\n", "print(npboot_std['Gi'], end='\\n\\n')\n", "print(\"Error in Gx:\")\n", "print(npboot_std['Gx'], end='\\n\\n')\n", "print(\"Error in Gy:\")\n", "print(npboot_std['Gy'])" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "Text(0.5,1,'Scatter plot comparing param vs. non-param bootstrapping error bars.')" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "loglog(npboot_std.to_vector(),pboot_std.to_vector(),'.')\n", "loglog(np.logspace(-4,-2,10),np.logspace(-4,-2,10),'--')\n", "xlabel('Non-parametric')\n", "ylabel('Parametric')\n", "xlim((1e-4,1e-2)); ylim((1e-4,1e-2))\n", "title('Scatter plot comparing param vs. non-param bootstrapping error bars.')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.0" } }, "nbformat": 4, "nbformat_minor": 1 }