Fixed description for convert_partially (#19133)

* Update src/frontends/common/include/openvino/frontend/frontend.hpp

Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com>

* Better and correct description of convert_partially (normalize or not normalize)

* Update src/frontends/common/include/openvino/frontend/frontend.hpp

Co-authored-by: Maxim Vafin <maxim.vafin@intel.com>

---------

Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com>
Co-authored-by: Maxim Vafin <maxim.vafin@intel.com>
This commit is contained in:
Sergey Lyalin 2023-08-11 17:29:56 +04:00 committed by GitHub
parent 260273932a
commit edc8015a65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,9 +83,10 @@ public:
virtual void convert(const std::shared_ptr<ov::Model>& partially_converted) const;
/// \brief Convert only those parts of the model that can be converted leaving others
/// as-is. Converted parts are not normalized by additional transformations; normalize
/// Model or another form of convert Model should be called to finalize the
/// conversion process.
/// as-is wrapped by FrameworkNode. Converted parts are normalized by additional
/// transformations like it is done in convert method. If part of the graph cannot be
/// converted, it is not guaranteed that the converted regions are completely normalized.
/// Normalize should be called for each completely converted parts individually in this case.
/// \param model Input model
/// \return partially converted OV Model
virtual std::shared_ptr<ov::Model> convert_partially(const InputModel::Ptr& model) const;