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 d1a76db commit 87f9bc8Copy full SHA for 87f9bc8
src/cpp/src/visual_language/phi3_vision/classes.cpp
@@ -563,7 +563,7 @@ std::shared_ptr<ov::Node> create_mean_scale(std::shared_ptr<ov::Node> input_u8_o
563
}
564
565
// Follow the original mean_scale() function logic exactly:
566
- // (float(uint_8_data[idx]) / 255.0f - config.image_mean[c]) / config.image_std[c]
+ // (float(uint8_data[idx]) / 255.0f - config.image_mean[c]) / config.image_std[c]
567
// Step 1: x / 255.0
568
auto scale_255 = v0::Constant::create(ov::element::f32, ov::Shape{}, std::vector<float>{255.0f});
569
auto divided_by_255 = std::make_shared<v1::Divide>(input_f32, scale_255);
0 commit comments