-
Notifications
You must be signed in to change notification settings - Fork 1
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
base: main
Are you sure you want to change the base?
noise model done #14
Conversation
Hi @eshant742, thank you for the PR!
Sorry to ask you for extra effort. Let me know if there is anything unclear! |
yeah i am on it |
these were changes Added from .noise_model import * # noqa to graphqec/init.py so that NoiseModel and related classes are accessible without import errors. 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 |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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), |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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] = [] |
There was a problem hiding this comment.
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] = [] |
There was a problem hiding this comment.
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
There is an issue with the implementation. The threshold lab returns 0s on the collected data. For the following code:
I get:
we should expect non-zero values for non-zero error rates. Could you have a look? |
No description provided.