You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add transformation pipeline to PrePostProcessing (#28852)
### Details:
After switching from ModelOptimizer to OVC, the order of
applying PrePostProcessing and MOCTransformations has changed:
MO path : [fw model conversion -> PrePostProcessing -> MOC] -> nncf
OVC path: [fw model conversion -> MOC] -> PrePostProcessing -> nncf
Since nncf is applied with a not fully optimized model, extra FQ ops
might appear,
which can affect both accuracy and performance.
e.g. Mul -> Conv fusion is not applied due to extra FQ
<img width="165" alt="{C6E93F2C-2CE3-4596-8D7F-ED7BD8013603}"
src="https://github.com/user-attachments/assets/3cbe6e07-9c07-4002-8b4c-9fb5bc662421"
/>
PrePostProcessing is not part of OVC, so we have to insert additional
Transformation calls inside PrePostProcessing.
### Tickets:
- *CVS-160786*
- CVS-161724
---------
Co-authored-by: Andrei Kochin <andrei.kochin@intel.com>
Co-authored-by: Andrii Staikov <andrii.staikov@intel.com>
0 commit comments