Skip to content
New issue

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

noise model done #14

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

noise model done #14

wants to merge 3 commits into from

Conversation

eshant742
Copy link

No description provided.

@adelshb
Copy link
Owner

adelshb commented Feb 13, 2025

Hi @eshant742, thank you for the PR!
I went through a few errors while running the tests. Could you have a look and proceed with the changes?

  1. NoiseModel import issues: Adding "from .noise_model import * # noqa" in the graphqec/init.py file
  2. Change all the imports from "from graphqec.noise_models" to "from graphqec.noise_model" (without the extra "s" at model)
  3. stim.Circuit have no method 'to_text_diagram' (Stim API reference: https://github.com/quantumlib/Stim/blob/main/doc/python_api_reference_vDev.md)

Sorry to ask you for extra effort. Let me know if there is anything unclear!

@eshant742
Copy link
Author

yeah i am on it

@eshant742
Copy link
Author

these were changes
NoiseModel Import

Added from .noise_model import * # noqa to graphqec/init.py so that NoiseModel and related classes are accessible without import errors.
Changed all imports from from graphqec.noise_models to from graphqec.noise_model (removing the extra "s") to match the actual file name.
Stim to_text_diagram

Replaced circuit.to_text_diagram() with str(circuit) because to_text_diagram() is only available in Stim’s development branch. Using str(circuit) works on the stable version of Stim, preventing the “no method ‘to_text_diagram’” error.

from graphqec.codes.base_code import BaseCode

# Import the NoiseModel interface (and possibly other models) if needed
from graphqec.noise_models import NoiseModel
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ending "s" is still in the import

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "s" is still there

@@ -35,73 +40,62 @@ class ThresholdLAB:
)

def __init__(
self, code: BaseCode, distances: list[int], error_rates: list[float]
self,
code: BaseCode, # or `type[BaseCode]` if `code` is a class, not an instance
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace with type[BaseCode]
(Thank you for pointing it out!)

@@ -16,14 +16,19 @@
import matplotlib.pyplot as plt
import pymatching

# If your code parameter is actually a class (subclass of BaseCode),
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove comment

@@ -2,3 +2,6 @@
from .measurement import * # noqa
from .stab import * # noqa
from .lab import * # noqa
# graphqec/__init__.py
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment to be removed

@@ -21,6 +23,9 @@
from graphqec.measurement import Measurement
from graphqec.stab import X_check, Z_check

# NEW: Import your NoiseModel and a default DepolarizingNoiseModel
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment to be removed

@@ -1,3 +1,5 @@
# graphqec/codes/base_code.py
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment to be removed

"_memory_circuit",
"_depolarize1_rate",
"_depolarize2_rate",
"_measurement",
"_graph",
"_checks",
"_logic_check",
"_noise_model", # NEW SLOT
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment to be removed

)

def __init__(
self,
distance: int = 3,
depolarize1_rate: float = 0,
depolarize2_rate: float = 0,
noise_model: NoiseModel = None, # NEW PARAM
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment to be removed

self._checks: list[str]
self._logic_check: list[str]

self._checks: list[str] = []
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To be removed. It should be defined in the Child class

self._logic_check: list[str]

self._checks: list[str] = []
self._logic_check: list[str] = []
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To be removed. It should be defined in the Child class

@adelshb
Copy link
Owner

adelshb commented Feb 15, 2025

There is an issue with the implementation. The threshold lab returns 0s on the collected data. For the following code:

th = ThresholdLAB(
    distances= [3, 5],
    code=RepetitionCode,
    error_rates= np.linspace(0, 0.1, 10)
)

noise = DepolarizingNoiseModel()
th.collect_stats(num_shots=10**3, noise_model=noise)

print(th.collected_stats)

I get:

{3: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
 5: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]}

we should expect non-zero values for non-zero error rates. Could you have a look?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants