We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60d9cfb commit b3e69c5Copy full SHA for b3e69c5
backends/openvino/quantizer/quantizer.py
@@ -88,7 +88,7 @@ def set_ignored_scope(
88
names: Optional[List[str]] = None,
89
patterns: Optional[List[str]] = None,
90
types: Optional[List[str]] = None,
91
- subgraphs: Optional[List[nncf.Subgraph]] = None,
+ subgraphs: Optional[List[Tuple[List[str], List[str]]]] = None,
92
validate: bool = True,
93
) -> None:
94
"""
@@ -107,7 +107,7 @@ def set_ignored_scope(
107
names=names or [],
108
patterns=patterns or [],
109
types=types or [],
110
- subgraphs=subgraphs or nncf.Subgraph(),
+ subgraphs=subgraphs or [],
111
validate=validate,
112
)
113
0 commit comments