Skip to content

Commit f68b2c7

Browse files
committed
fix default ignored scope for model using sdpa by default
1 parent b84ef4a commit f68b2c7

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

examples/openvino/image-classification/configs/swin-base-jpqd.json

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636
"ignored_scopes": [
3737
"{re}.*__add___[0-1]",
3838
"{re}.*layer_norm_0",
39-
"{re}.*matmul_1",
40-
"{re}.*__truediv__*"
4139
]
4240
}
4341
]

examples/openvino/question-answering/configs/bert-base-jpqd.json

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636
"ignored_scopes": [
3737
"{re}.*__add___[0-1]",
3838
"{re}.*layer_norm_0",
39-
"{re}.*matmul_1",
40-
"{re}.*__truediv__*"
4139
]
4240
}
4341
]

examples/openvino/text-classification/configs/bert-base-jpqd.json

-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@
4040
"ignored_scopes": [
4141
"{re}.*__add___[0-1]",
4242
"{re}.*layer_norm_0",
43-
"{re}.*matmul_1",
44-
"{re}.*__truediv__*"
4543
]
4644
}
4745
]

optimum/intel/openvino/trainer.py

-2
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,6 @@
153153
"{re}.*Embedding.*",
154154
"{re}.*add___.*",
155155
"{re}.*layer_norm_.*",
156-
"{re}.*matmul_1",
157-
"{re}.*__truediv__.*",
158156
],
159157
}
160158

0 commit comments

Comments
 (0)